Skip to content

Instantly share code, notes, and snippets.

@benjholla
Last active March 19, 2016 18:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjholla/8011fd547efa1286ce0d to your computer and use it in GitHub Desktop.
Save benjholla/8011fd547efa1286ce0d to your computer and use it in GitHub Desktop.
A small Java program demonstrating a dynamic dispatch
public class DynamicDispatchExample {
public static void main(String[] args){
A b1 = new B();
A c1 = new C();
A b2 = b1;
A c2 = c1;
// what will get printed?
b2.print(c2);
}
public static class A extends Object {
public void print(A object) {
System.out.println("An instance of " + object.getClass().getSimpleName()
+ " was passed to A's print(A object)");
}
}
public static class B extends A {
public void print(A object) {
System.out.println("An instance of " + object.getClass().getSimpleName()
+ " was passed to B's print(A object)");
}
}
public static class C extends B {
public void print(A object) {
System.out.println("An instance of " + object.getClass().getSimpleName()
+ " was passed to C's print(A object)");
}
}
public static class D extends A {
public void print(A object) {
System.out.println("An instance of " + object.getClass().getSimpleName()
+ " was passed to D's print(A object)");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment