List使用Iterator遍历的坑

 

              写法一:
              Iterator<QcSampleDTO> it = qclist.iterator();
              //排除尾箱容器
               while (it.hasNext()) {
              if(it.next().getContainerId().equals(tailDTO.getContainerId())
                && it.next().getLotId().equals(tailDTO.getLotId())) {
                                it.remove();
                   }
               }
               
                出现了两次 it.next() ,如果list集合长度为2,就不会第二次进入遍历。


               写法二:
               QcSampleDTO tailDTO = tailList.get(0);
                Iterator<QcSampleDTO> it = qclist.iterator();
                //排除尾箱容器
                while (it.hasNext()) {
                QcSampleDTO sampleDTO = it.next();
                 if (sampleDTO.getContainerId().equals(tailDTO.getContainerId())
                                && sampleDTO.getLotId().equals(tailDTO.getLotId())) {
                      it.remove();
                   }
               }

                

写法一是个坑,it.next()使用一次,下标加一,写法二正确。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章