容器遍历删除问题

    Map<String,Integer> m1=new HashMap<String,Integer>();
        m1.put("one", 1);
        m1.put("two",2);
        m1.put("three", 3);
        Set<String> s=m1.keySet();
            
        Iterator<String> it=s.iterator();
        
        while(it.hasNext()){
            String s1=it.next();
            if("two".equals(s1)){
                s.remove(s1);
                //it.remove();
            }
            //System.out.println(it.next());
        }

这时会抛异常

Exception in thread "main" java.util.ConcurrentModificationException

解决方法

    Map<String,Integer> m1=new HashMap<String,Integer>();
        m1.put("one", 1);
        m1.put("two",2);
        m1.put("three", 3);
        Set<String> s=m1.keySet();
            
        Iterator<String> it=s.iterator();
        
        while(it.hasNext()){
            String s1=it.next();
            if("two".equals(s1)){
                //s.remove(s1);
                it.remove();
            }
            //System.out.println(it.next());
        }

而当我重新遍历的时候

    System.out.println(it.hasNext());
        while(it.hasNext()){
        System.out.println(it.next());

打印出来的是false,因为while遍历是游标已经到结尾了,再调用it.hasNext()是false

修改

    it=s.iterator();
        System.out.println(it.hasNext());
        while(it.hasNext()){
        System.out.println(it.next());

加了一段it=s.iterator();其实刚开始我是以为删除之后迭代器没有更新导致的

转载于:https://www.cnblogs.com/bashala/p/3591567.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值