为什么24*60*60*1000*1000除以24*60*60*1000在Java中不等于1000?
因为乘法溢出32位整数.在64位中它没关系:
public class Test { public static void main(String[] args) { int intProduct = 24 * 60 * 60 * 1000 * 1000; long longProduct = 24L * 60 * 60 * 1000 * 1000; System.out.println(intProduct); // Prints 500654080 System.out.println(longProduct); // Prints 86400000000 } }
显然,在乘法溢出后,除法不会"撤消"溢出.
你需要从24L*60*开始...因为int溢出.
你的问题是BTW的复制/粘贴拼图3:龙科从Java的谜题 ;)