Java 8 Stream flatMap and group by code compiler error

前端 未结 2 537
情歌与酒
情歌与酒 2021-01-14 03:18
// given a set of Item objects, group them by the managers of creator and owners
Map> managersItems = 
    itemSet.parallelStream().fl         


        
2条回答
  •  礼貌的吻别
    2021-01-14 03:55

    You didn't do anything wrong. Eclipse compiler has problems with type inference that causes these issues. If Luna compatibility is important, you will have to add explicit types to lambda expressions. Try, for example, Map.Entry::getKey

    On another note, it's not necessary to convert a List to array to stream it. You can directly call users.stream(). But even creating the List isn't necessary. You can use Stream.concat(Stream.of(item.getCreator()), item.getOwners().stream()) instead (granted, it's a bit unwieldy).

    Finally (and most importantly), avoid using parallelStream with blocking code, such as looking up data in an external system. Parallel streams are designed to handle CPU-bound tasks.

提交回复
热议问题