Map<String,Object> map = new HashMap<>();
map.put("name","zhongxu");
map.put("age",28);
map.put("sex","man");
map.put("love","JAVA");
map.put("major","Java后端开发工程师");
//使用lambda 的foreach便利hashmap
System.out.println("使用lambda表达式遍历HashMap:");
map.forEach((key,value)->{
System.out.println(key+"-------"+value); });
//使用stream遍历hashmap
System.out.println("使用stream遍历HashMap:");
map.entrySet().stream().forEach(entry->{
System.out.println(entry.getKey()+"----"+entry.getValue()); });
关注我查看跟多文章
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/100725.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...