Skip to content

Instantly share code, notes, and snippets.

@Manjago
Created March 26, 2015 12:07
Show Gist options
  • Save Manjago/9b518f8ddfb77524ad45 to your computer and use it in GitHub Desktop.
Save Manjago/9b518f8ddfb77524ad45 to your computer and use it in GitHub Desktop.
анонимный статический класс
public class Toster {
static class Zhopa{
void display(){
}
}
public static void main(String[] args) {
new Zhopa(){
@Override
void display() {
System.out.println("Превед");
}
}.display();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment