java.util.ConcurrentModificationException
摘要:
错误原因:在使用迭代器过程中对迭代对象进行操作导致。示例代码: 1 Map map=new HashMap(); 2 map.put("a", "aa"); 3 map.put("b", "bb"); 4 map.put("c", "cc"); 5 ... 阅读全文
posted @ 2014-05-06 20:39 下一行code 阅读(261) 评论(0) 推荐(0) 编辑