rf 遍历列表_Java List和Map遍历的方法,forEach()的使用
注意:不要在foreach循环里进行元素的remove/add操作。remove元素请使用Iterator方式,如果并发操作,需要对Iterator对象加锁。Java 8之前List// ListList list = new ArrayList<>(6);list.add("1");list.add("2");for (Iterator iterator = list.iterato...