Hashset迭代抛出Illegate状态错误

时间:2013-12-06 03:02:02

标签: java iterator hashmap hashtable hashset

我有两个哈希映射,我需要从其中一个中删除一个元素。这就是我现在正在做的事情。

for(Iterator<Byte> iterator = Ka.iterator(); iterator.hasNext();) {
                byte kaValue = iterator.next();
                byte potentialPIValue = (byte)(E1a + kaValue);
                for(byte actualPIValue : getPIs) {                       
                    if (potentialPIValue != actualPIValue )                         
                        iterator.remove();
                }
            }   

但是我收到此错误,我无法看到代码有什么问题。有谁知道这里的问题是什么?

 exception in thread "main" java.lang.IllegalStateException
at java.util.HashMap$HashIterator.remove(HashMap.java:910)
at DESPrac.main(DESPrac.java:59)

1 个答案:

答案 0 :(得分:6)

你可能两次点击iterator.remove()语句而不移动到下一个元素,因为你在内部循环中调用它。

尝试

       for(Iterator<Byte> iterator = Ka.iterator(); iterator.hasNext();) {
            byte kaValue = iterator.next();
            byte potentialPIValue = (byte)(E1a + kaValue);
            for(byte actualPIValue : getPIs) {                       
                if (potentialPIValue != actualPIValue ){                         
                    iterator.remove();
                    break; // Exit the inner loop
                }
            }
        }