12
我想調用MySortedSet的構造函數,它將Comparator c作爲參數。我如何修改這個來做到這一點?使用lambda中的Java流中的參數調用構造函數
public MySortedSet<E> subSet(E fromElement, E toElement) {
return list.stream()
.filter(x -> (list.indexOf(x) <= list.indexOf(fromElement)
&& list.indexOf(x) < list.indexOf(toElement)))
.collect(Collectors.toCollection(MySortedSet<E> :: new));
}