identityHashCode 方法的功能简介说明
下文笔者讲述identityHashCode方法的功能简介,如下所示:
identityHashCode方法的功能
identityHashCode方法的功能: 用于返回对象的内存地址对应的哈希值 常用于HashCode方法被覆盖后,任然想获取内存地址对应的Hash值的方法例:
String s1 = "java265.com"; String s2 = "java265.com"; System.out.println(s1.hashCode() == s2.hashCode()); System.out.println(System.identityHashCode(s1) == System.identityHashCode(s2));
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。