private static class IntegerCache {
private IntegerCache(){}
static final Integer cache[] = new Integer[-(-128) + 127 + 1];
static {
for(int i = 0; i < cache.length; i++)
cache[i] = new Integer(i - 128);
}
}
IntegerCache 的源码IntegerCache
最新推荐文章于 2025-05-19 14:47:20 发布