I've got some problems with the following example (to be more precise, with one specific line). Here's the code (question follows afterwards):
public class Up
{
public void cc(Up u) {System.out.println("A");}
public void cc(Middle m) {System.out.println("B");}
}
public class Middle extends Up
{
public void cc(Up u) {System.out.println("C");}
public void cc(Down d) {System.out.println("D");}
}
public class Down extends Middle
{
public void cc(Up u) {System.out.println("E");}
public void cc(Middle m) {System.out.println("F");}
}
public class Test
{
public static void main(String... args)
{
Up uu = new Up();
Up pp = new Middle();
Down dd = new Down();
uu.cc(pp); // "A"
uu.cc(dd); // "B"
pp.cc(pp); // "C"
pp.cc(dd); // "B"
dd.cc(pp); // "E"
dd.cc(dd); // "D"
}
}
Now uu.cc(pp); and uu.cc(dd); are pretty obvious, because uu is an instance of Up and pp "looks like" an Up aswell (at compile time). The most fitting method for dd is cc(Middle m) as dd is an instance of Down which inherits from Middle.
The lines I've got the most problems with are pp.cc(dd); and dd.cc(dd).
I'm really a bit confused about which method is chosen when and how these things are determined upon compiliation or at runtime.
I'd be glad if someone could help me understand.