博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java list 转map
阅读量:6805 次
发布时间:2019-06-26

本文共 636 字,大约阅读时间需要 2 分钟。

  hot3.png

Say we have a Map:

Map
m = new HashMap
(); m.put("Hello", "World"); m.put("Apple", "3.14"); m.put("Another", "Element");

The keys as a List can be obtained by creating a new  from a  returned by the  method:

List
list = new ArrayList
(m.keySet());

While the values as a List can be obtained creating a new ArrayList from a  returned by the  method:

List
list = new ArrayList
(m.values());

The result of getting the List of keys:

AppleAnotherHello

The result of getting the List of values:

3.14ElementWorld

转载于:https://my.oschina.net/liting/blog/541189

你可能感兴趣的文章
Asp.net 根据IP地址获取跨网段mac地址函数【搜藏】
查看>>
h5 slider页面滑动相关问题
查看>>
PYTHON2.day08
查看>>
paste
查看>>
数据增强之图像旋转及坐标对应(附代码)
查看>>
C# 获取屏幕的大小
查看>>
sass语法(1)
查看>>
react use simditor
查看>>
ARM——I2C
查看>>
垂直水平居中
查看>>
集合(二)栈和链表
查看>>
2-01模块分组,和主题
查看>>
转:深入了解bash与sh的区别
查看>>
WORD神操作!第一个技巧你就傻眼了!
查看>>
Linux shell编程学习笔记-----第六章变量和引用
查看>>
HTML标签小结
查看>>
滴滴算法大赛算法解决过程 - 方案设计
查看>>
写给要买Surface的各位兄弟
查看>>
汤姆大叔设计模式学习体会:设计模式的思想
查看>>
VS Code快捷键
查看>>