クラスを実装する必要がある演習を行っていますが、説明を理解するのに苦労しています。
これは説明/演習です:
* Adds all of the elements in the specified set, for which it is
* possible, to this set.
* post: all elements, for which it is possible, in the
* specified set are added to this set.
* @return true if this set changed as a result of the call
そして、これが答えです
public boolean addAll(SimpleSet<? extends E> s) {
Iterator<? extends E> it = s.iterator();
boolean changed = false;
while (it.hasNext()) {
changed = add(it.next());
}
return changed;
}
これは私が自分でやろうとしたことですが、私が何をすべきか頭を悩ますのに苦労しました.
public boolean addAll(SimpleSet<? extends E> s){
Iterator<? extends E> itr = s.iterator();
while(itr.hasNext()){
add(itr.next());
}
return true;
}
可能な限りの助けに感謝します。
ボビー。