今天写完代码测试的时候遇到一个小bug,写下来做个记录
我发现当fTimeYear=2018,lTimeYear也等于2018时,结果竟然是false,然后我去查了integer的源码
static {
// high value may be configured by property
int h = 127;
String integerCacheHighPropValue =
sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
if (integerCacheHighPropValue != null) {
try {
int i = parseInt(integerCacheHighPropValue);
i = Math.max(i, 127);
// Maximum array size is Integer.MAX_VALUE
h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
} catch( NumberFormatException nfe) {
// If the property cannot be parsed into an int, ignore it.
}
}
high = h;
cache = new Integer[(high - low) + 1];
int j = low;
for(int k = 0; k < cache.length; k++)
cache[k] = new Integer(j++);
// range [-128, 127] must be interned (JLS7 5.1.7)
assert IntegerCache.high >= 127;
}
integer在加载时就会调用Integer.valueOf()方法,以上就是integer.valueOf()方法的部分源码,integer的取值范围是在-128与127之间,只有在这之间的对比才会是true,超过这个范围,我们就要用equals()方法来对比,虽然只是很小的问题,但是如果不注意的话还是要吃大亏的