我有一个包含信息的树形图。我可以通过它来选择我想要打印的字段,或者只是创建一个类。但我无法弄清楚转换并将其转换为List<>
理想情况下,我希望将其作为
返回List<AssetMinuteTotals> listATM = assetsList.stream() ..
或者使listATM包含AssetMinuteTotals列表的另一种形式。 我不能使用collect,因为它不是TreeMap的一部分。如下所示,我尝试过list.add。但是这种语法显然不正确。
assetsList.stream().collect(Collectors.groupingBy(
Function.identity(), ()->new TreeMap<>(group),
Collectors.summarizingDouble(Asset::getPrice)))
.forEach((a,p)-> new AssetMinuteTotals(a.getPaper(), p.getAverage(),
(long)a.getTradeMinutesSinceMidnight(), p.getCount()));
group
以这种方式定义:
Comparator<Asset> group=Comparator.comparing(Asset::getPaper)
.thenComparing(Asset::getTradeMinutesSinceMidnight);
我试过这个。但那不会编译。
assetsList.stream().collect(Collectors.groupingBy(
Function.identity(), ()->new TreeMap<>(group),
Collectors.summarizingDouble(Asset::getPrice)))
.forEach((a,p)-> new AssetMinuteTotals(a.getPaper(), p.getAverage(),
(long)a.getTradeMinutesSinceMidnight(), p.getCount()) -> listAMT.add(e);
我可以通过将列表作为参数传递来解决此问题。但这似乎非常难看,因为我必须在AssetMinuteTotals类的构造函数中实现它
assetsList.stream().collect(Collectors.groupingBy(
Function.identity(), ()->new TreeMap<>(group),
Collectors.summarizingDouble(Asset::getPrice)))
.forEach((a,p)-> new AssetMinuteTotals(a.getPaper(), p.getAverage(),
(long)a.getTradeMinutesSinceMidnight(), p.getCount(), listAMT));
答案 0 :(得分:2)
您可能希望从List<AssetMinuteTotals> result = assetsList.stream()
.collect(Collectors.groupingBy(Function.identity(),
() -> new TreeMap<>(group),
Collectors.summarizingDouble(Asset::getPrice)))
.entrySet().stream()
.map(entry -> new AssetMinuteTotals(entry.getKey().getPaper(),
entry.getValue().getAverage(),
(long) entry.getKey().getTradeMinutesSinceMidnight(),
entry.getValue().getCount()))
.collect(Collectors.toList());
创建新流并收集它:
TreeMap<Asset, DoubleSummaryStatistics> map = assetsList.stream()
.collect(Collectors.groupingBy(Function.identity(),
() -> new TreeMap<>(group),
Collectors.summarizingDouble(Asset::getPrice)));
List<AssetMinuteTotals> result = map
.entrySet().stream()
.map(entry -> new AssetMinuteTotals(entry.getKey().getPaper(),
entry.getValue().getAverage(),
(long) entry.getKey().getTradeMinutesSinceMidnight(),
entry.getValue().getCount()))
.collect(Collectors.toList());
虽然我会将它分配给中间变量,因为这对我来说看起来更干净:
required { base_uri: String, endpoints: String, destination: String, credentials: Hash}