判断Integer值相等用equals
一些基础不是很好的,比如说我,在判断Intger类型值相等时习惯int的判断而用了==,后来发现竟然有些值明明一样,但是它们不相等,测试如下: Integer a = 5; Integer b = 5; Integer c = 322; Integer d = 322; System.out.println(a == b);//输出true System.out...