MoneZhao / monezhao.github.io

My Bolg with github pages + Hexo
https://monezhao.github.io/
0 stars 0 forks source link

ArrayList 遍历删除 | Mone Zhao 的博客 #28

Open MoneZhao opened 5 years ago

MoneZhao commented 5 years ago

https://monezhao.github.io/2019/08/02/ArrayList-loop-remove/

list的遍历分为3种: 普通遍历, for(int i=0;i<list.size();i++) 增强for循环, for(Object x:list) iterator遍历, Iterator<String> it = list.iterator(); while(it.hasNext()){} 同时ArrayList和线程安全的CopyOnWriteArrayList不