if(C.size()!=0){ Iterator itr=C.iterator(); //A对B的相对补集B-A=B-A交B while (itr.hasNext()){ String temp=(String) itr.next(); if(B.contains(temp)) B.remove(temp); } System.out.print("A对B的相对补集"); while(itr2.hasNext()){ System.out.print(itr2.next()); } System.out.println(); //B对A的相对补集A-B=A-A交B while (itr.hasNext()){ String temp=(String) itr.next(); if(A.contains(temp)) A.remove(temp); } System.out.print("B对A的相对补集"); while(itr1.hasNext()){ System.out.print(itr1.next()); }
时间: 2024-02-14 21:07:51 浏览: 302
ES6 Iterator接口和for...of循环用法分析
这段代码存在一个问题。在计算 B 对 A 的相对补集时,第一个 while 循环已经用完了 itr,而第二个 while 循环又使用了 itr,但此时 itr 已经没有元素。因此,第二个 while 循环应该使用一个新的迭代器来遍历 C 集合。可以将第一个 while 循环中的 itr 替换为 itr2,然后再定义一个新的迭代器 itr3 来遍历 C 集合,如下所示:
```java
if(C.size()!=0){
Iterator itr=C.iterator();
//A对B的相对补集B-A=B-A交B
while (itr.hasNext()){
String temp=(String) itr.next();
if(B.contains(temp))
B.remove(temp);
}
System.out.print("A对B的相对补集");
Iterator itr2=B.iterator();
while(itr2.hasNext()){
System.out.print(itr2.next());
}
System.out.println();
//B对A的相对补集A-B=A-A交B
Iterator itr3=C.iterator();
while (itr3.hasNext()){
String temp=(String) itr3.next();
if(A.contains(temp))
A.remove(temp);
}
System.out.print("B对A的相对补集");
Iterator itr1=A.iterator();
while(itr1.hasNext()){
System.out.print(itr1.next());
}
}
```
阅读全文