int[]--->数组,只能放int类型的元素,并且必须定长度
例如:int[] T=new int[5]; 只能放int,并且长度不能超过5
ArrayList-->集合的一种,其中可以放任何类型,不受限制,长度可变,自增加长度
例如:ArrayList AR=new ArrayList(){"你好",0,new int[5]{1,2,3,4,5},User}; 可以放任意类型
List<T>--->集合的一种,其中只能放相同类型的数据,长度可变,增长度
例如:List<int> list=new list<int>(){0,1,1,2,3,4},只能放int,