ArrayListArrayList a=new ArrayList();a.add(“a”);a.get(10);
add:ArrayList在添加的时候会增加数组的大小,与10比较,如果小于10 则选择10,然后就是正常的数组copy
2021-11-27