码迷,mamicode.com
首页 > 编程语言 > 详细

Java8里的HashMap对象lambda遍历方法

时间:2020-06-30 12:35:18      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:ash   tco   hashmap   system   use   text   dem   bsp   new   

Java demo:

        Map<String, User> map = new HashMap<>();
        map.put("id1", new User(1,"name1"));
        map.put("id2", new User(2,"name2"));

        String str = map.entrySet().stream().map(entry ->
            "id[" + entry.getKey() + "], code=" + entry.getValue().getCode() + ", text=" + entry.getValue().getText()
        ).collect(Collectors.joining("; "));
        System.out.println("str==="+str);

 

end.

Java8里的HashMap对象lambda遍历方法

标签:ash   tco   hashmap   system   use   text   dem   bsp   new   

原文地址:https://www.cnblogs.com/zhuwenjoyce/p/13212840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!