Java學習--list,set,Map介面使用

有稜角的圓發表於2016-07-13

list介面:

泛型:規定list中的元素的型別

    /*
     *
     * 泛型不能使用基本資料型別(可以使用基本型別的包裝類)
     *
     */
    public void testBasic() {
        //List<int> list = new ArrayList<int>();//會報錯的
        List<Integer> list = new  ArrayList<Integer>();
        
    }

set介面

set是無序的,list是有序的

map介面:

 

相關文章