我们都知道jdk在1.5版本之后,增加了一些新特性,我们称之为语法糖,有:1.泛型,2.foreach增强for循环,3.自动拆装箱,4.可变参数,5.枚举,6.静态导入 public class TestMain { public static void main(String[] args) { Integer i = 10; } } public class TestMain { public static void main(String[] args) { Integer intege…