6
Özel karşılaştırıcıyla TreeSet'e toplamak için akışları kullanma
Java 8'de çalışıyorum, şöyle bir TreeSettanımım var : private TreeSet<PositionReport> positionReports = new TreeSet<>(Comparator.comparingLong(PositionReport::getTimestamp)); PositionReport şu şekilde tanımlanan oldukça basit bir sınıftır: 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); …