8
Xóa các phần tử khỏi bộ sưu tập trong khi lặp
AFAIK, có hai cách tiếp cận: Lặp lại một bản sao của bộ sưu tập Sử dụng trình vòng lặp của bộ sưu tập thực tế Ví dụ, List<Foo> fooListCopy = new ArrayList<Foo>(fooList); for(Foo foo : fooListCopy){ // modify actual fooList } và Iterator<Foo> itr = fooList.iterator(); while(itr.hasNext()){ // modify …
215
java
collections
iteration