【搬砖系列】如何在遍历List时安全删除集合元素
摘要:
1 public void testIterRemove() { 2 List l1 = new ArrayList(Arrays.asList(1, 2, 3, 4, 5)); 3 Iterator<Integer> iterator = l1.iterator(); 4 System.out.p 阅读全文
posted @ 2018-11-01 23:28 独角没有戏 阅读(521) 评论(0) 推荐(0) 编辑