Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public static Integer x;
  2.  
  3. public static void doChange(Integer x)
  4.  
  5. {
  6. x = 2;
  7.  
  8. }
  9.  
  10. public static void main(String arg[]) {
  11. x = 1;
  12.  
  13. doChange(x);
  14.  
  15. System.out.println(x);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement