自动装箱、128陷阱
自动装箱规范要求,boolean、byte、char<=127, -128<= short、int <=127被包装到固定的对象中。 Integer a = 1000; Integer b = 1000; if(a == b) { System.out.println("相等"); }a和b不在-128~127之间,所以不成立。 Inte...