在Java 8中,我有一个TreeSet
这样的定义:
private TreeSet<PositionReport> positionReports =
new TreeSet<>(Comparator.comparingLong(PositionReport::getTimestamp));
PositionReport
是一个相当简单的类,定义如下:
public static final class PositionReport implements Cloneable {
private final long timestamp;
private final Position position;
public static PositionReport create(long timestamp, Position position) {
return new PositionReport(timestamp, position);
}
private PositionReport(long timestamp, Position position) {
this.timestamp = timestamp;
this.position = position;
}
public long getTimestamp() {
return timestamp;
}
public Position getPosition() {
return position;
}
}
这很好。
现在,我要从TreeSet positionReports
其中timestamp
早于某个值的位置删除条目。但是我无法找出正确的Java 8语法来表达这一点。
该尝试实际上可以编译,但是为我提供TreeSet
了一个未定义比较器的新功能:
positionReports = positionReports
.stream()
.filter(p -> p.timestamp >= oldestKept)
.collect(Collectors.toCollection(TreeSet::new))
我要如何表达自己想要收集到的TreeSet
像这样的比较器Comparator.comparingLong(PositionReport::getTimestamp)
?
我本来以为
positionReports = positionReports
.stream()
.filter(p -> p.timestamp >= oldestKept)
.collect(
Collectors.toCollection(
TreeSet::TreeSet(Comparator.comparingLong(PositionReport::getTimestamp))
)
);
但这不能编译/似乎是方法引用的有效语法。