gpt4 book ai didi

java中List、Array、Map、Set等集合相互转换

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章java中List、Array、Map、Set等集合相互转换由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

java中List、Array、Map、Set等集合相互转换 。

  在java中,我们经常需要对List、Array等做一些转换操作,当然转换方法有很多种,但哪种方法既方便又高效呢?在这里向大家介绍一下集合间的最佳转换方法.

1.List转换为Array 。

?
1
2
3
4
5
6
List<String> list = new ArrayList<String>();
list.add( "China" );
list.add( "Switzerland" );
list.add( "Italy" );
list.add( "France" );
String [] countries = list.toArray( new String[list.size()]);

2.Array转换为List 。

?
1
2
String[] countries = { "China" , "Switzerland" , "Italy" , "France" };
List list = Arrays.asList(countries);

3.Map转换为List 。

?
1
List<Value> list = new ArrayList<Value>(map.values());

4.Array转换为Set 。

?
1
2
3
String [] countries = { "India" , "Switzerland" , "Italy" };   
Set<String> set = new HashSet<String>(Arrays.asList(countries));
System.out.println(set);

5.Map转换为Set 。

?
1
2
Map<Integer, String> sourceMap = createMap();
Set<String> targetSet = new HashSet<>(sourceMap.values());

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持! 。

原文链接:http://blog.csdn.net/suifeng3051/article/details/41699033 。

最后此篇关于java中List、Array、Map、Set等集合相互转换的文章就讲到这里了,如果你想了解更多关于java中List、Array、Map、Set等集合相互转换的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com