一:List接口
1.特点:有序跟对象可以重复
2.遍历方式
2.1.下标
2.2.foreach(>=jdk1.5)
3.迭代器优化
4.jdk1.8的语法糖
ArrayList arr=new ArrayList();
arr.forEach(a->system.out.println(a))