import java.lang.reflect.Field;
public class MyTest {
public static void main(String[] args) throws Exception {
Integer a = 1, b = 2;
System.out.println(a + “->” + b);
swap(a, b);
System.out.println(a + “->” + b);
}
private static void swap(Integer a, Integer b) throws Exception {
Field field = Integer.class.getDeclaredField("value");
field.setAccessible(true);
int tmp = a.intValue();
//修改了Integer里面缓存a的值
field.set(a, b);
//设置的是Object,tmp是int,所以调用Integer.valueOf(),Cache[tmp-low]和a的对象是同一个对象,所以同时修改了俩个的值。如果tmp为Integer对象,则可以交换
field.set(b, tmp);
Integer.valueOf()
}
}
Integer.valueOf()如下:
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)