Arrays.asList又是什么意思,为什么要这么写
addall(int index,Collection c)方法,list类中的方法,这里调用,用来一下添加多个对象。int index为添加进去的位置,Collection c为要添加的集合, Arrays.alist()方法可以把数组转化为list集合,
由于list也是collection的子类,所以这里要这样添加多个对象。