fork download
  1. class Ideone {
  2. public static void main(String[] args) {
  3. final Integer tmp1 = 60_000;
  4. System.out.println(System.identityHashCode(tmp1));
  5. System.out.println(System.identityHashCode(tmp1));
  6. System.out.println(tmp1 == tmp1);
  7. }
  8. }
  9.  
Success #stdin #stdout 0.07s 46916KB
stdin
Standard input is empty
stdout
804564176
804564176
true