关于数组,List,Set,Map之间的相互转换

package com.test;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

/**
 * 数组,List,Set之间的相互转换
 * Map因为涉及到key,value 无非就是keySet,values拿出来后进行具体处理。
 * 
 * @author tianjun tkf36897
 * @version 1.0 Dec 27, 2010
 */
public class Test
{
    public static void main(String[] args)
    {
        /*
         * (1)数组 --> List
         */
        Man[] temp2 = { new Man("test1"), new Man("test2"), new Man("test3") };
        List<Man> tempList = Arrays.asList(temp2);
        
        /*
         * (2) List --> Set
         */
        Set<Man> tempSet = new HashSet<Man>(tempList);
        
        /*
         * (3)Set --> List
         */
        List<Man> tempList2 = (List<Man>)new ArrayList(tempSet);
        
        /*
         * (4)List --> 数组
         */
        Man[] tempMan =(Man[])tempList.toArray();
    }
}

class Man
{
    private String name;

    public Man(String name)
    {
        super();
        this.name = name;
    }

    /**
     * 获得name
     * @return the name
     */
    public String getName()
    {
        return name;
    }

    /**
     * 设置the name
     * @param name the name to set
     */
    public void setName(String name)
    {
        this.name = name;
    }

}
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值