fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args)
  4. {
  5. Object a = new Object();
  6. Object b = new Object();
  7. System.out.printf("a: %d, %d\n", a.hashCode(), System.identityHashCode(a));
  8. System.out.printf("b: %d, %d\n", b.hashCode(), System.identityHashCode(b));
  9. }
  10. }
Success #stdin #stdout 0.08s 34156KB
stdin
Standard input is empty
stdout
a: 804564176, 804564176
b: 1418481495, 1418481495