摘要: Integer对象两种创建方式的比较 先看一段代码: public class Main { public static void main(String[] args) { Integer i1 = 6; Integer i2 = 6; Integer i3 = new Integer(6); I 阅读全文