62,635
社区成员




class Demo{
int x=10;
}
public class Demo2 {
public static void main(String args[]) {
String str = "hello";
System.out.println("hello hashcode:"+str.hashCode());
fun(str);
System.out.println("finally hashcode:"+str.hashCode());
System.out.println(str);
}
public static void fun(String temp) {
System.out.println("before change hashcode:"+temp.hashCode());
temp = "world";
System.out.println("after change hashcode:"+temp.hashCode());
}
}
输出:
hello hashcode:99162322
before change hashcode:99162322
after change hashcode:113318802
finally hashcode:99162322
hello