I have gone through many links about reference object in java. Still I don't have clear idea.
superclass obj = new subclass();
How will obj get instantiated? What is the use of it?
|
I have gone through many links about reference object in java. Still I don't have clear idea.
How will obj get instantiated? What is the use of it? |
|||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
|
|||
|
|
|
No, obj won't be instantiated (it is reference of type I would suggest reading this tutorial to understand more about what does that mean object and reference. |
|||
|
|
|
reference and object are two different things, reference may refer to one of the object (or it can be null, referring no where)
there are lots of ways but in this example using new key word
see polymorphism |
|||
|
|
|
Here the |
|||
|
|