标签: java
这是失败的。
int i = 2; i = i -Double.MIN_VALUE;
但这已经过去了
int i = 2; i -= Double.MIN_VALUE;
为什么要编译?
我正在使用JDK 8