Okie. I can't believe this is happening but may be some comments from you will help.
I have a Parent class.
import java.util.HashMap;
import java.util.Map;
public class Parent {
Map<String,String> map = new HashMap<String, String>();
public void process(){
System.out.println("parent");
this.checkFunction();
}
protected void checkFunction(){
System.out.println("parentC");
System.out.println(map);
}
public void init(){
(map).put("parent","b");
}
}
Now, as expected I have a child class.
import java.util.HashMap;
import java.util.Map;
public class Child extends Parent {
Map<String,String> map = new HashMap<String, String>();
public void checkFunction(){
System.out.println(map);
System.out.println("ChildC");
}
public void process(){
super.process();
System.out.println("Child");
}
public void init(){
super.init();
(map).put("child","b");
}
}
To test what I want, I have a main class.
public class test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Child a = new Child();
a.init();
a.process();
Parent p = a;
p.checkFunction();
}
}
When I call a.process(), I assume it should call child.process() which will in return call super.process(). So far so could. In Parent's process(), it should call checkFunction().
Now, as per my understanding it should call checkFunction() of Parent class. Why the hell is it calling Child's checkFunction().
My output is something like this
parent
{child=b}
ChildC
Child
{child=b}
ChildC
I expect it to be
parent
parentC
{parent=b}
Child
{child=b}
ChildC
What's wrong? ?
Child.checkFunctionis correct. This is the nature of Java's dynamic polymorphism. The target object of the invocation ofcheckFunctionis an instance ofChild, so its implementation ofcheckFunctionwill be executed. – Nathan D. Ryan May 14 '11 at 1:18