Java 8 lambda create list of Strings from list of objects

前端 未结 4 1211
自闭症患者
自闭症患者 2021-02-02 10:31

I have the following qustion:

How can I convert the following code snipped to Java 8 lambda style?

List tmpAdresses = new ArrayList

        
4条回答
  •  野性不改
    2021-02-02 10:48

    It is extended your idea:

    List tmpAdresses = users.stream().map(user ->user.getAdress())
    .collect(Collectors.toList())
    

提交回复
热议问题