关于集合中的对象的删除 在看代码时发现
List<String> names = ....Iterator<String> i = names.iterator();while (i.hasNext()) { // Do something i.remove();}