数组: int[] buff = new int[6]; ArrayList: ArrayList buff = new ArrayList(); List: List _List = new List(); Dictionary: Dictionary _Dictionary = new Dictionary(); LinkedList: LinkedList _LinkedList = new LinkedList(); 分析比较 从上面初始化的几种类型可以看出,他们都属于引用类型。其中数组、List、Dict…