先看一段代码:
public static void main(String[] args) {
Integer a = new Integer(1);
Integer b = new Integer(1);
System.out.println(a==b);
System.out.println(a.equals(b));
a=1;
b=1;
System.out.println(a==b);
a=128;
b=128;
System.out.println(a==b);
}