Reputation: 195
So I am a student and in the process of learning Java. There is one concept that I am having a difficult time grasping and am hoping that someone could shed some light on this for me. My question is regarding polymorphism. Let's say for example I have the following code.
Animal a = new Lizard("Lizzy", 6); //Lizard extends Animal
From what I understand, since the variable type is Animal, a will have all the characteristics of an Animal. But, since the object created is a Lizard, any overridden methods in the Lizard class will be used instead of those in the Animal class. Is this correct>
Also, which classes constructor will be used while creating a?
Thanks for any help. I have looked quite
Upvotes: 9
Views: 10309
Reputation: 46408
1.From what I understand, since the variable type is Animal, a will have all the characteristics of an Animal. But, since the object created is a Lizard, any overridden methods in the Lizard class will be used instead of those in the Animal class. Is this correct>
yes, you are Right.
2.Also, which classes constructor will be used while creating a?
Animal a = new Lizard("Lizzy", 6); //Lizard extends Animal
As, Lizard is a subclass of Animal, First, Lizards constructor will be invoked, then from Lizards constructor, there will be a call to Animal constructor as the first line in your Lizard constructor would be super() by default unless you call an overloaded constructor of Lizard using this(). In Animal constructor there will be another call to super() in the first line. assuming Animal doesn't extend any class, java.lang.Object's
constructor will be invoked as java.lang.Object
is the super class of every object.
public Object() {
}
Class Animal {
public Animal(){
//there will be a super call here like super()
}
class lizard extends Animal {
public Lizard(your args) {
//there will be a super() call here and this call's animal's no-args constructor
}
}
}
The order of execution would be
Upvotes: 9
Reputation: 3633
Any overridden methods in the Lizard class will be used instead of those in the Animal class
Yes, you're right
which classes constructor will be used while creating a?
When you create a subclass, it will implicitly call super class's constructor. Hence, both super class, which is Animal
, and sub class, which is Lizard
, will be used.
Upvotes: 0
Reputation: 24124
This is correct, even though the reference is of type Animal
, all method calls will resolve to the definition in Lizard
if present, otherwise the version in the next immediate parent will be called and so on.
a
is just a reference and the actual object is of type Lizard
. So, the constructors in Lizard
class will be called. They in turn can call the constructors in super classes using super()
.
Upvotes: 0