This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes changing reference types Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "changing reference types" Watch "changing reference types" New topic
Author

changing reference types

Neha Mittal
Greenhorn

Joined: Dec 05, 2008
Posts: 10
What does this mean -> "Although a reference variable's type can't be changed, it can be used to refer to an object whose type is a subtype of its own" ?


Dreams are not which you see when you are asleep. Dreams are that that do not let you sleep..
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32644
    
    4
You can have a reference to a Vehicle. You can use that reference to point to a Car object or a Bus object.
Aum Tao
Ranch Hand

Joined: Feb 14, 2006
Posts: 210
This is referring to inheritance. Consider the following example:


Taking your case, the Animal reference can be assigned to the Dog object, since it satisfies the IS A relationship. However, this fails for the second assignment since Shape doesn't extend Animal. Moreover, it shouldn't since they are not logically related.


SCJP 1.4 85%
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: changing reference types
 
Similar Threads
reference problem
About type and class attribute of jsp usebean
classCastException
arrays & final
overLoading