我是Java的新手,正在尝试将此代码转换为SQL:
public class hashtest {
public static void main(String []args) {
calculateHashCode("asdf","asdf","asdf");
}
public static int calculateHashCode(String a, String b, String c) {
final int prime = 31;
int result = 1;
result = prime * result + ((a == null) ? 0 : a.hashCode());
System.out.println(result);
result = prime * result + ((b == null) ? 0 : b.hashCode());
System.out.println(result);
result = prime * result + ((c == null) ? 0 : c.hashCode());
System.out.println(result);
System.out.println(a.hashCode());
System.out.println(b.hashCode());
System.out.println(c.hashCode());
return result;
}
}
当所有哈希码值均为正数时,结果变量的值在最终语句中如何从正值变为负值?
输出
我在(https://www.tutorialspoint.com/compile_java_online.php)上执行了这段代码
答案 0 :(得分:1)
乘法结果溢出,从int
的最小值-2147483648继续,给您带来了负数结果。
答案 1 :(得分:0)
乘法溢出。
如果将result
的类型更改为long
(当然,最后会回退),则会得到输出:
3003475
96111169
2982449683
3003444
3003444
3003444
2982449683大于Integer.MAX_VALUE
。