Advertisement
Guest User

Untitled

a guest
May 25th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. class Test {
  2. static {
  3. System.out.println("test 1");
  4. }
  5. public Test(){
  6. System.out.println("test 2");
  7. }
  8. }
  9.  
  10. public class sample_0004 {
  11. static {
  12. System.out.println("メイン 1");
  13. }
  14. public static void main(String[] args) {
  15. System.out.println("パターン1");
  16. Test test1 = new Test();
  17.  
  18. System.out.println("パターン2");
  19. Test test2 = new Test();
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement