jdk/src/java.base/share/classes/java/lang/System.java
changeset 44704 165b88f3d4a8
parent 44667 f21890b3f82d
parent 44599 942f3546b679
child 44926 32eeee1c0abd
equal deleted inserted replaced
44703:755b714df450 44704:165b88f3d4a8
   533      * The hash code for the null reference is zero.
   533      * The hash code for the null reference is zero.
   534      *
   534      *
   535      * @param x object for which the hashCode is to be calculated
   535      * @param x object for which the hashCode is to be calculated
   536      * @return  the hashCode
   536      * @return  the hashCode
   537      * @since   1.1
   537      * @since   1.1
       
   538      * @see Object#hashCode
       
   539      * @see java.util.Objects#hashCode(Object)
   538      */
   540      */
   539     @HotSpotIntrinsicCandidate
   541     @HotSpotIntrinsicCandidate
   540     public static native int identityHashCode(Object x);
   542     public static native int identityHashCode(Object x);
   541 
   543 
   542     /**
   544     /**