Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class TestClass
  2. {
  3. int j=10;
  4. static int h=j;
  5.  
  6. TestClass()
  7. {
  8.  
  9. System.out.println(h);
  10. }
  11.  
  12. public static void main(String[] args)
  13. {
  14. TestClass obj= new TestClass();
  15.  
  16.  
  17. }
  18.  
  19. }
  20.  
  21. static int j = 10;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement