我需要过滤HashMap
Map<String, Point> points = new HashMap<String, Point>();
对于它的一些值并有一个方法
public List<String> getEqualPointList(Point point) {
return this.points.entrySet().stream().filter(p -> p.getValue().isEqual(point)).collect(Collectors.toList(p -> p.getKey()));
}
该方法应在过滤Map后返回包含所有键(匹配值)的List。
如何处理collect()?我收到一条错误消息
Multiple markers at this line
- The method toList() in the type Collectors is not applicable for the arguments
((<no type> p) -> {})
- Type mismatch: cannot convert from Collection<Map.Entry<String,Point>> to
List<String>
答案 0 :(得分:3)
toList
不接受任何参数。您可以使用map
将Entry
的流转换为密钥流。
public List<String> getEqualPointList(Point point) {
return this.points
.entrySet()
.stream()
.filter(p -> p.getValue().isEqual(point))
.map(e -> e.getKey())
.collect(Collectors.toList());
}