首先,==有很多限制,如Integer 类型的值在[-128,127] 期间,Integer 用 “==”是可以的(参考),超过范围则不行,那么使用equal则代替则完全ok public static void main(String[] args) { Long prop=4004L; Long prop1=4004l; Integer prop2=4004; Integer prop3=4004; if(prop2.equals(prop3)){ System.out.println("h…