ArthurDn

Untitled

Oct 3rd, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class GoodbyeWorld {
  2. public static void main(String[] args) {
  3. System.out.print(a.i);
  4. System.out.print(b.i);
  5. }
  6. }
  7.  
  8. class a {
  9. static {
  10. i = 2;
  11. }
  12. static int i = 1;
  13. };
  14.  
  15. class b {
  16. static int i = 1;
  17. static {
  18. i = 2;
  19. }
  20. };
Advertisement
Add Comment
Please, Sign In to add comment