8

我希望下面的代码会给我一个子集和一个补充集。

但实际上,结果显示“错误:这不是子集!”

it.next() 得到什么以及如何修改我的代码以获得我想要的结果?谢谢!

package Chapter8;

import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;

public class Three {
    int n;
    Set<Integer> set = new HashSet<Integer>();

    public static void main(String args[]) {
        Three three = new Three(10);
        three.display(three.set);
        Set<Integer> test = new HashSet<Integer>();
        Iterator<Integer> it = three.set.iterator();
        while(it.hasNext()) {
            test.add(it.next());
            three.display(test);
            three.display(three.complementarySet(test));
        }

    }

    boolean contains(Set<Integer> s) {
        if (this.set.contains(s))
            return true;
        else 
            return false;
    }

    Set<Integer> complementarySet(Set<Integer> s) {
        if(this.set.contains(s)){
            Set<Integer> result = this.set;
            result.removeAll(s);
            return result;
        }
        else {
            System.out.println("Error: This is not a subset!");
            return null;
        }
    }

    Three() {
        this.n = 3;
        this.randomSet();
    }

    Three(int n) {
        this.n = n;
        this.randomSet();
    }

    void randomSet() {
        while(set.size() < n) {
            set.add((int)(Math.random()*10));
        }
    }

    void display(Set<Integer> s) {
        System.out.println("The set is " + s.toString());
    }
}
4

2 回答 2

37

您可能希望set.containsAll(Collection <?> C)用于检查 Collection(Set,在这种情况下) 是否是“set”的子集。来自文档:http://docs.oracle.com/javase/7/docs/api/java/util/Set.html#containsAll(java.util.Collection)

布尔包含所有(集合 c)

如果此集合包含指定集合的​​所有元素,则返回 true。如果指定的集合也是一个集合,如果它是这个集合的子集,则此方法返回 true。

于 2014-05-21T17:08:54.620 回答
4

你的问题出在这部分:

set.contains(s)

that 不会像您认为的那样做,它不会将 another 作为参数Set来查看其成员是否包含在 first 中set。而是查看传递给它的参数是否在 Set 中。

您需要遍历“包含”集合并set.contains(element)用于包含集合中的每个元素。

于 2013-07-24T02:23:54.603 回答