Method identityHashCode(Object x)
Return type: int
Member of:
java.lang.System
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
Integer.toHexString(System.identityHashCode(this));
2
return super.toString() + " root: " + rootDir + " foCount: " + foCount + " " + System.identityHashCode(this);
3
return "BaseView=" + System.identityHashCode(this) // NOI18N
4
return "PersonImpl@" + System.identityHashCode(this) + "(" + id + "): " + getFirstname() + " " + getLastname() + ", " + numOfChildren + " children";
5
" oid="+System.identityHashCode(this)+
6
victimRNG = new Random(System.identityHashCode(this));
7
return Integer.toString(System.identityHashCode(test));
8
return new Integer(System.identityHashCode(proxy));
9
return new Integer(System.identityHashCode(proxy));
10
return o.getClass().getName() + "@" + System.identityHashCode(o);
11
return Integer.toHexString(System.identityHashCode(o));
12
System.err.print(" " + label + " " + constraint.getClass() + "(" + System.identityHashCode(constraint) + ") " + constraint.getValue());
13
private final String baseStr = base.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(base));
14
+ System.identityHashCode( m_instance ) + "] ("
15
int hash = (System.identityHashCode(key) & 0x7FFFFFFF) % tab.length;
16
idbuf.append(System.identityHashCode(obj));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.