最佳答案
在 Java8中,我有一个如下定义的 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
比某个值更老。但是我无法找到正确的 Java8语法来表达这一点。
这种尝试实际上是编译的,但是给我一个新的带有未定义比较器的 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))
)
);
但这并不是编译/似乎是方法引用的有效语法。