Java学习--list,set,Map接口使用

list接口:

泛型:规定list中的元素的类型

    /*
     *
     * 泛型不能使用基本数据类型(可以使用基本类型的包装类)
     *
     */
    public void testBasic() {
        //List<int> list = new ArrayList<int>();//会报错的
        List<Integer> list = new  ArrayList<Integer>();
        
    }

set接口

set是无序的,list是有序的

map接口:

 

posted @ 2016-07-13 17:24  有棱角的圆  阅读(175)  评论(0编辑  收藏  举报