Skip to content

Instantly share code, notes, and snippets.

@yiding-he
Created November 10, 2023 06:00
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 yiding-he/78b02282ec27c4ae7b7dc31ee45fa64f to your computer and use it in GitHub Desktop.
Save yiding-he/78b02282ec27c4ae7b7dc31ee45fa64f to your computer and use it in GitHub Desktop.
Code execution before main() method
public class JavaLangTest {
static {
System.out.println("22222");
}
public static void main(String[] args) {
System.out.println("11111");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment