List、Set、Map、数组之间各种转换

简介:

刚学Java不久的时候,接到一个电面,然后问了一些java的知识,比如说Java的编码,Unicode等,但是最让我蛋疼的是怎么吗map转为set,那个时候对集合用的很少,对集合不是特别了解,map还知道,set就蒙了,然后转为set更蒙了,觉得应该有API提供吧,但是不知道怎么说。后来我一直下来再查这个问题,查到了,但是没有实践过,今天我就来一发代码。

List转Set                                                                                   

Set set = new HashSet(new ArrayList());

Set转List                                                                                   

List list = new ArrayList(new HashSet());

数组转为List                                                                                

List arr = Arrays.asList("1", "2", "3");
//或者
String[] arr = {"1", "2"};
List list = Arrays.asList(arr);

数组转为Set                                                                                 

int[] arr = { 1, 2, 3 };
Set set = new HashSet(Arrays.asList(arr));

Map的值转化为List                                                                      

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

Map的值转化为Set                                                                       

Set set = new HashSet(map.values());

List转数组                                                                                   

List list = Arrays.asList("a","b");
String[] arr = (String[])list.toArray(new String[list.size()]);

代码                                                                                         

复制代码
public class listsetmao {

    private static List<String> arrayList;
    private static Map<String, String> hashMap;
    private static Set<String> hashSet;
    private static String[] arr = {"11oneone","22twotwo"};

    public static void main(String[] args) {
        /*
         * //list转set initList(); Set<String> set = new
         * HashSet<String>(arrayList);
         * System.out.println("arrayList.toString()--->"+set.toString());
         * System.out.println("set.toString()--->"+set.toString());
         */
        /*
         * //set转list initSet(); List<String> list = new
         * ArrayList<String>(hashSet);
         * System.out.println("hashSet.toString()--->"+hashSet.toString());
         * System.out.println("list.toString()--->"+list.toString());
         */
        /*
        // 数组转为list
        List<String> list = Arrays.asList(arr);
        System.out.println("list.toString()--->"+list.toString());
        */
        /*
        //数组转set
        Set set = new HashSet<>(Arrays.asList(arr));
        System.out.println("set.toString()--->"+set.toString());
        */
        /*
        //map的值转为list
        initMap();
        List<String> list = new ArrayList<String>(hashMap.values());
        System.out.println("list.toString()--->"+list.toString());
        */
        /*
        //map的值转为set
        initMap();
        Set<String> set = new HashSet<String>(hashMap.values());
        System.out.println("set.toString()--->"+set.toString());
        */
        /*
        //map的key转为set
        initMap();
        Set<String> set = new HashSet<String>(hashMap.keySet());
        System.out.println("set.toString()--->"+set.toString());
        */
        //list转数组
        initList();
        String[] arr1 = (String[])arrayList.toArray(new String[arrayList.size()]);
        System.out.println("Arrays.toString(arr1)--->"+Arrays.toString(arr1));
    }

    public static void initList() {
        arrayList = new ArrayList<String>();
        arrayList.add("1");
        arrayList.add("2");
        arrayList.add("3");
        arrayList.add("4");
    }

    public static void initMap() {
        hashMap = new HashMap<String, String>();
        hashMap.put("one", "one1");
        hashMap.put("two", "two2");
        hashMap.put("three", "three3");
    }

    public static void initSet() {
        hashSet = new HashSet<String>();
        hashSet.add("1one");
        hashSet.add("2two");
        hashSet.add("3three");
        hashSet.add("4four");
        hashSet.add("5five");
    }


}
复制代码

我是天王盖地虎的分割线                                                                 

源代码:http://pan.baidu.com/s/1dD1Qx01

listsetmap.zip

 

 




本文转自我爱物联网博客园博客,原文链接:http://www.cnblogs.com/yydcdut/p/3825721.html如需转载请自行联系原作者

相关文章
|
23天前
|
算法
你对Collection中Set、List、Map理解?
你对Collection中Set、List、Map理解?
57 18
你对Collection中Set、List、Map理解?
|
16天前
|
存储 缓存 安全
只会“有序无序”?面试官嫌弃的List、Set、Map回答!
小米,一位热衷于技术分享的程序员,通过与朋友小林的对话,详细解析了Java面试中常见的List、Set、Map三者之间的区别,不仅涵盖了它们的基本特性,还深入探讨了各自的实现原理及应用场景,帮助面试者更好地准备相关问题。
54 20
|
1月前
|
存储 C++ 容器
【C++】map、set基本用法
本文介绍了C++ STL中的`map`和`set`两种关联容器。`map`用于存储键值对,每个键唯一;而`set`存储唯一元素,不包含值。两者均基于红黑树实现,支持高效的查找、插入和删除操作。文中详细列举了它们的构造方法、迭代器、容量检查、元素修改等常用接口,并简要对比了`map`与`set`的主要差异。此外,还介绍了允许重复元素的`multiset`和`multimap`。
33 3
【C++】map、set基本用法
|
1月前
|
存储 算法 C++
【C++】unordered_map(set)
C++中的`unordered`容器(如`std::unordered_set`、`std::unordered_map`)基于哈希表实现,提供高效的查找、插入和删除操作。哈希表通过哈希函数将元素映射到特定的“桶”中,每个桶可存储一个或多个元素,以处理哈希冲突。主要组成部分包括哈希表、哈希函数、冲突处理机制、负载因子和再散列,以及迭代器。哈希函数用于计算元素的哈希值,冲突通过开链法解决,负载因子控制哈希表的扩展。迭代器支持遍历容器中的元素。`unordered_map`和`unordered_set`的插入、查找和删除操作在理想情况下时间复杂度为O(1),但在冲突较多时可能退化为O(n)。
23 5
|
1月前
|
算法 JavaScript 前端开发
使用 Set 类型实现数组的交集运算
【10月更文挑战第30天】使用 `Set` 类型实现数组的交集运算是一种常见且有效的方法,它为我们处理数据集合的运算提供了一种便捷的途径。通过合理地运用这种方法,我们可以轻松地实现数组的交集计算,并在各种编程任务中灵活运用。
|
2月前
|
存储 JavaScript 前端开发
Set、Map、WeakSet 和 WeakMap 的区别
在 JavaScript 中,Set 和 Map 用于存储唯一值和键值对,支持多种操作方法,如添加、删除和检查元素。WeakSet 和 WeakMap 则存储弱引用的对象,有助于防止内存泄漏,适合特定场景使用。
|
2月前
|
前端开发 JavaScript 索引
JavaScript 数组常用高阶函数总结,包括插入,删除,更新,反转,排序等,如map、splice等
JavaScript数组的常用高阶函数,包括遍历、插入、删除、更新、反转和排序等操作,如map、splice、push、pop、reverse等。
24 0
|
3月前
|
存储 Java API
【数据结构】map&set详解
本文详细介绍了Java集合框架中的Set系列和Map系列集合。Set系列包括HashSet(哈希表实现,无序且元素唯一)、LinkedHashSet(保持插入顺序的HashSet)、TreeSet(红黑树实现,自动排序)。Map系列为双列集合,键值一一对应,键不可重复,值可重复。文章还介绍了HashMap、LinkedHashMap、TreeMap的具体实现与应用场景,并提供了面试题示例,如随机链表复制、宝石与石头、前K个高频单词等问题的解决方案。
50 6
【数据结构】map&set详解
|
2月前
|
存储 缓存 Java
【用Java学习数据结构系列】HashMap与TreeMap的区别,以及Map与Set的关系
【用Java学习数据结构系列】HashMap与TreeMap的区别,以及Map与Set的关系
44 1
|
3月前
|
算法
你对Collection中Set、List、Map理解?
你对Collection中Set、List、Map理解?
42 5