Skip to content

Instantly share code, notes, and snippets.

@codiodes
Last active December 7, 2017 13:31
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 codiodes/9153b98dead5157149ea10e5a35c6406 to your computer and use it in GitHub Desktop.
Save codiodes/9153b98dead5157149ea10e5a35c6406 to your computer and use it in GitHub Desktop.
Static Block in Java
class MyClass {
static {
System.out.println("Static Blocks in Java by Codiodes");
System.exit(0);
}
public static void main(String[] args) {
// Initialization
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment