Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public class Stranezza {
  2.  
  3. public int cambioStrano(Integer numero){
  4. numero = new Integer(3);
  5. return numero;
  6. }
  7.  
  8.  
  9. public static void main(String[] args) {
  10. Stranezza s = new Stranezza();
  11. Integer valore = new Integer(8);
  12.  
  13. System.out.println(valore);
  14. s.cambioStrano(valore);
  15. System.out.println(valore);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement