fork(1) download
  1. import java.util.*;
  2.  
  3. class Ideone {
  4. public static void main (String[] args) {
  5. List<String> list = new ArrayList<String>();
  6. list.add("a");
  7. list.add("b");
  8. list.add("c");
  9. Iterator<String> i = list.iterator();
  10. while (i.hasNext()) {
  11. String nome = i.next();
  12. System.out.println("Antes => " + nome);
  13. if (nome == "b") i.remove();
  14. System.out.println("Depois => " + nome);
  15. }
  16. }
  17. }
  18.  
  19. //https://pt.stackoverflow.com/q/341518/101
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
Antes => a
Depois => a
Antes => b
Depois => b
Antes => c
Depois => c