什么是128陷阱呢?让我们先看一段代码
package com.dyyee.jicheng;
public class SonClass {
public static void main(String[] args) {
// TODO Auto-generated method stub
Integer a = 127;
Integer b = 127;
System.out.println(a==b);
Integer c = 128;
Integer d = 128;
System.out.println(c==d);
}
}
怎么样? 猜猜结果如何?
下面揭晓答案
看到答案和自己所想的是否一致呢?
自动填装规范要求Boolean、byte 、char <= 127,介入-128~127之间的short和int被包装到固定的对象中。例如上面的a b初始化127就在范围之间,对他们进行比较的结果一定成立,所以返回值为ture。