将列表<映射<长, 字符串>> 转换为列表<长> Java 8

我有一个地图列表,其中每个地图只有每个地图。我需要将其转换为密钥列表。我正在尝试使用流,如下所示:one key-value pair


List<Map<Long, String>> lst = // some data

List<Long> successList = lst.stream().map(ele -> ele.keySet().toArray()[0]).collect(Collectors.toList());

但我最终得到以下错误:


java: incompatible types: inference variable T has incompatible bounds

  equality constraints: java.lang.Long

  lower bounds: java.lang.Object

如何解决此问题或有更好的方法?


哔哔one
浏览 117回答 4
4回答

哈士奇WWW

使用如下:Stream#flatMaplst.stream() &nbsp;&nbsp;&nbsp;.flatMap(e->e.entrySet().stream()) &nbsp;&nbsp;&nbsp;.map(e->e.getKey()) &nbsp;&nbsp;&nbsp;.collect(Collectors.toList());编辑:(根据评论)更优雅的方式将是使用而不是.Map#keySetMap#entrySetlst.stream() &nbsp;&nbsp;&nbsp;.flatMap(e&nbsp;->&nbsp;e.keySet().stream()) &nbsp;&nbsp;&nbsp;.collect(Collectors.toList());

鸿蒙传说

您只需要 :List<Long>&nbsp;successList&nbsp;=&nbsp;lst.stream() &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.flatMap(e&nbsp;->&nbsp;e.keySet().stream()) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.collect(Collectors.toList());

青春有我

虽然已经发布了更好的答案(是你的朋友在这里),但我认为值得在这里指出的是,打字错误源于没有参数的使用。flatMaptoArrayjshell> List<Long> a = Arrays.asList(1L, 2L, 3L, 4L)a ==> [1, 2, 3, 4]jshell> a.toArray()$2 ==> Object[4] { 1, 2, 3, 4 }看到了吗?不使用参数时,将得到类型 .因此,请改为执行以下操作:toArrayObject[]jshell> a.toArray(new Long[1])$3 ==> Long[4] { 1, 2, 3, 4 }通过添加参数,我们强制的结果是您想要的 Long 数组,而不是对象数组。new Long[1]toArray

开满天机

使用这个:lst.stream().flatMap(m&nbsp;->&nbsp;m.entrySet().stream()).map(Map.Entry::getKey).collect(toList());
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java