Integer a = new Integer(100);
Integer b = new Integer(100);
a == b
这个是false

Integer a = 100;
Integer b = 100;
a == b
这个是true