在下面的代码中,我看不出 T1 和 T3 有什么不同。当然,我的计算器说它们不是。
public class longTest {
public static final long T1 = 24 * 60 * 60 * 1000 * 30;
public static final long T2 = 24 * 60 * 60 * 1000;
public static final long T3 = T2 * 30;
public static void main(String[] args) {
System.out.println(T1);
System.out.println(T2);
System.out.println(T3);
}
}
那么为什么我会得到以下输出:
-1702967296
86400000
2592000000
在这个示例程序中也不仅仅是 System.out.println。当我在 Eclipse 中有 T1 并将鼠标悬停在变量上时,我会得到一个显示相同值的光泽。
java版本“1.6.0_33”OSX