Pracując w Javie 8 mam takie TreeSet
zdefiniowane:
private TreeSet<PositionReport> positionReports =
new TreeSet<>(Comparator.comparingLong(PositionReport::getTimestamp));
PositionReport
jest raczej prostą klasą zdefiniowaną w ten sposób:
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;
}
}
To działa dobrze.
Teraz chcę usunąć wpisy z miejsca, w TreeSet positionReports
którym timestamp
jest starszy niż jakaś wartość. Ale nie mogę znaleźć poprawnej składni Java 8, aby to wyrazić.
Ta próba faktycznie się kompiluje, ale daje mi nową TreeSet
z niezdefiniowanym komparatorem:
positionReports = positionReports
.stream()
.filter(p -> p.timestamp >= oldestKept)
.collect(Collectors.toCollection(TreeSet::new))
Jak wyrazić, że chcę zebrać do postaci TreeSet
z komparatorem Comparator.comparingLong(PositionReport::getTimestamp)
?
Pomyślałbym coś takiego
positionReports = positionReports
.stream()
.filter(p -> p.timestamp >= oldestKept)
.collect(
Collectors.toCollection(
TreeSet::TreeSet(Comparator.comparingLong(PositionReport::getTimestamp))
)
);
Ale to nie kompiluje / nie wydaje się poprawną składnią dla odwołań do metod.