懒码农。。。。。。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年10月18日

摘要: 转自:http://www.iteye.com/topic/1116623/* Hello.java */import java.lang.Integer;public class Hello{ public static void main(String[] args) { int a = 1000, b = 1000; System.out.println(a == b); Integer c = 1000, d = 1000; System.out.println(c == d); Integer e = 100, f = 100; System.out.println(e == f); 阅读全文
posted @ 2011-10-18 12:19 阿彬 阅读(351) 评论(0) 推荐(0)