byte常量优化

    public static void main(String[] args) {
        Integer i1 = 128, i2 = 128;
        System.out.println(i1==i2);
        Integer i3 = 12,  i4 = 12;
        System.out.println(i3==i4);
    }

运行结果:
false
true

你可能感兴趣的:(byte常量优化)