Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. class Question {
  2.  
  3.     static {
  4.         System.out.println("1");
  5.     }
  6.  
  7.     {
  8.         System.out.println("2");
  9.     }
  10.  
  11.     Question() {
  12.         System.out.println("4");
  13.     }
  14.  
  15.     public static void main(String[] args) {
  16.         System.out.println("3");
  17.         new Question();
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement