Skip to content

Instantly share code, notes, and snippets.

@Thomvis
Created July 21, 2010 22:57
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 Thomvis/485265 to your computer and use it in GitHub Desktop.
Save Thomvis/485265 to your computer and use it in GitHub Desktop.
abstract class Super {
public void identify() {
System.out.println(this.getClass());
}
}
class Child extends Super {
}
public class Sibling {
public static void main(String[] args) {
new Child().identify();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment