The method System.identityHashCode(...) is called that way, because it identifies objects, so two distinct objects can't have same identity-hashcode, right?
It returns an int. But what happens, on a system with huge amount of RAM, when the number of objects exceeds the integer range 2^32?
Wouldn't it be a problem for HashMaps and HashSets when operating on classes which don't override equals and hashCode?
EDIT:
If int is not enough, can I get some real unique ID for an object?
~4.2*(10^9): I suggest to use simple2^XXXwhen talking about anything related to computers (ie.2^32is a range for integer). – Crozin Jul 24 '10 at 10:46@Crozinok, changed. By the way, I have 2^0 computers, 2^1 monitors and about 2^5 audio-CDs ;) – java.is.for.desktop Jul 24 '10 at 10:52