摘要: 如果你运行如下代码: 1 2 3 4 Integer a = 1000, b = 1000; System.out.println(a == b);//1 Integer c = 100, d = 100; System.out.println(c == d);//2 1 2 3 4 Integer 阅读全文
posted @ 2017-02-06 10:28 奥特快啦 阅读(379) 评论(0) 推荐(0) 编辑