在foreach()中使用return
List<Integer> testList = new LinkedList<>(); testList.add(0); testList.add(1); testList.add(2); testList.add(3); testList.forEach(val -> { if (val == 2) { return; } System.out.println(val); });
foreach()中使用break
foreach()中使用continue