I have a basic inheritance situation with an overloaded method in the super class.
public class Person {
private String name;
private int dob;
private String gender;
public Person(String theName, int birth, String sex){
name = theName;
dob = birth;
gender = sex;
}
public void work(){
getWorkDetail(this);
}
public void getWorkDetail(Employee e){
System.out.println("This person is an Employee");
}
public void getWorkDetail(Person p){
System.out.println("This person is not an Employee");
}
}
The following Employee
class extends the Person
class above:
public class Employee extends Person {
String department;
double salary;
public Employee(String theName, int birth, String sex){
super(theName, birth, sex);
department = "Not assigned";
salary = 30000;
}
}
The main method simply creates an Employee
object (both static and dynamic type) and calls .work()
on it:
public static void main(String[] args){
Employee e1 = new Employee("Manager1", 1976, "Female");
e1.work();
}
This ends up printing
This person is not an Employee
Looking through this I had thought that since both the static and dynamic type of the object e1
is Employee
it would call the overloaded method in Person that takes an Employee
as a parameter. Since I am clearly wrong about this I opened a debugger assuming the reference to "this" at the line getWorkDetail(this)
in the Person
class must have morphed to it's super class. However this is not what I found.
Clearly at this point in the code this
is an Employee
object, however it still chose to execute the overloaded method getWorkDetail(Person p)
. Can anyone explain this behavior?
Person
class forgetWorkDetail(Employee e)
method... – zlakadthis
in the classPerson
is of the static typePerson
. – xehpukthis
is implicit a non-static method. It really doesn't make any sense to passthis
to a member method here. – JimmyJames