Skip to content

Instantly share code, notes, and snippets.

@plucury

plucury/Test Secret

Created January 13, 2014 02:43
Show Gist options
  • Save plucury/59cf6689a6494be6e1cf to your computer and use it in GitHub Desktop.
Save plucury/59cf6689a6494be6e1cf to your computer and use it in GitHub Desktop.
public class Test {
{
dosth();
}
public Test() {
System.out.println("Father init");
}
public void dosth() {
System.out.println("Fater before init");
}
}
public class Test2 {
public static void main(String[] args) {
Test S = new Test() {
public void dosth(){
System.out.println("Son before init");
}
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment