import java.lang.reflect.Field;
import java.util.Random;
public class IntegerTest {
public static void main(String[] args) throws Exception {
Class<?> clazz = Class.forName("java.lang.Integer$IntegerCache");
Field field = clazz.getDeclaredField("cache");
field.setAccessible(true);
Integer[] cache = (Integer[]) field.get(clazz);
// 改变Integer的缓存
for (int i = 0; i < cache.length; i++) {
cache[i] = new Integer(new Random().nextInt(cache.length));
}
for (int i = 0; i < 10; i++) {
System.out.println((Integer) i); // 这个时候1不是1 ,2也不是2
}
}
}
我本地的打印结果是:
254
12
42
39
216
102
20
140
75
119