Integer 类型数值判断相等的坑
今天项目中出现了数值比较的问题,由于Integer类型使用==进行比较public static void main(String[] args) { Integer t1 = 70, t2 = 70; Integer t3 = 140, t4 = 140; System.out.println(t1 == t2); System.out.println(t3 == t4);}java为了提高效率,IntegerCache类中有一个数组缓存了值从-128到127的