摘要:
public class Test {
public static void main(String[] args) {
Integer i1 = 127;
Integer i2 = 127;
Integer i3 = Integer.valueOf(127);
if (i1 == i2)
System.out.println("i1 == i2 is true!"... 阅读全文
posted @ 2009-12-19 20:03
niuky
阅读(4444)
评论(0)
推荐(1)