Integer类有一个缓存
Integer类有一个缓存,会缓存介于-128~127之间的整数public class Test {public static void main(String[] args) { Integer i1 = 127; Integer i2 = 127; System.err.println(i1 == i2); i1 = 128; i2 = 128; Sys...