【发布时间】:2010-07-28 10:09:48
【问题描述】:
public class Main {
/**
* @param args the command line arguments */
public static void main(String[] args) {
// TODO code application logic here
int a1 = 1000, a2 = 1000;
System.out.println(a1==a2);//=>true
Integer b1 = 1000, b2 = 1000;
System.out.println(b1 == b2);//=>false
Integer c1 = 100, c2 = 100;
System.out.println(c1 == c2);//=>true
}
}
为什么b1 == b2 为假而c1 == c2 为真?
【问题讨论】:
标签: java integer autoboxing