public class Test {
public static void main(String args[]) {
String s1 = "abc";
//Here is invoking of overriding String hashCode method.
System.out.println("hashCode value "+s1.hashCode()); }
}
而不是它,我想得到非重写的Object hashCode方法。我怎么得到它?
答案 0 :(得分:12)
改为呼叫System.identityHashCode(s1)
。