首页 > 首页

java写程序2+2=5,你相信吗?

发表于2014-07-08 17:53:42| --次阅读| 来源webkfa| 作者小猪仔

摘要:写了一个java代码,2+2运行结果等于5

来看段代码

public class Test {
	public static void main(String[] args) throws Exception, NoSuchFieldException {
		Class cache = Integer.class.getDeclaredClasses()[0];
	    Field c = cache.getDeclaredField("cache");
	    c.setAccessible(true);
	    Integer[] array = (Integer[]) c.get(cache);
	    array[132] = array[133];
	
	    System.out.printf("%d",2 + 2);
	}
}
运行结果
5

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1