我想调用MySortedSet的一个构造函数,它以一个Comparator c为参数.我该如何修改呢?
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)); }