Hashmap集合、Set集合、List集合初解

import java.util.*;
public class newcollection {
    static Map map=new HashMap();//向集合添加数据的方法
    public String getName(String name) {
        String number=map.get(name);
        return number;
    }
    public void setMessage(String name,String number) {
        map.put(name, number);
    }
    public static void main(String args[]) {
        newcollection map=new newcollection();
        map.setMessage("李四","111");
        System.out.println(map.getName("李四"));//此处只能通过key值获取value值
        List list1=new ArrayList();
        list1.add("aaaa");
        list1.add("bbbb");
        list1.add("cccc");
        list1.add("aaaa");
        Set set=new HashSet();
        set.addAll(list1);//将List集合中的元素添加到Set集合中
        Iterator it=set.iterator();//通过Iterator遍历集合
        while(it.hasNext()) {
            String str=it.next();
            System.out.println(str);
        }
    }
}
 

你可能感兴趣的:(Hashmap集合、Set集合、List集合初解)