import java.util.ArrayList;
声明:
ArrayList<Te> t =new ArrayList<Te>(); ArrayList<Te> t1 =new ArrayList<>(); ArrayList<Te> t =new ArrayList<Te>(100);添加
t.add(new Te(1,"name")); t.add(index,new Te(1,"name")) //在指定位置添加,所有后续元素右移获取数组列表大小
t.size()当数组列表大小确定不会改变时,调整存储区域,多余存储空间被收回
t.trimToSize();set //只能替换已经存在的内容 index<t.size()
t.set(1,new Te(index,"lisi"));get index<t.size()
Te te = t.get(index)灵活的创建数组
ArrayList<Te> t = new ArrayList<>(); int i = 0; while(i<100) { Te te = new Te(); t.add(te); i++; } Te[] a = new Te[t.size()]; t.toArray(a);便利每个元素
for (Te te : a) { System.out.println(te.toString()); }