list介面:
泛型:規定list中的元素的型別
/*
*
* 泛型不能使用基本資料型別(可以使用基本型別的包裝類)
*
*/
public void testBasic() {
//List<int> list = new ArrayList<int>();//會報錯的
List<Integer> list = new ArrayList<Integer>();
}
set介面
set是無序的,list是有序的
map介面: