Java 8 lambda create list of Strings from list of objects

前端 未结 4 1207
自闭症患者
自闭症患者 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:39

    You can use this to convert Long to String:

    List ids = allListIDs.stream()
                                 .map(listid-> String.valueOf(listid))
                                 .collect(Collectors.toList());
    

提交回复
热议问题