标签:ted arraylist table index dict key pop set sorted
数组的缺点:长度固定。因此引入集合的使用。
注:泛型集合更安全,性能更高。
常用集合 对应泛型
①动态数组ArrayList List<T>
常用方法属性:Add Clear Contains IndexOf Insert Remove Sort
②哈希表Hashtable Dictionary<TKey,TValue>
常用方法属性:Add Clear ContainsKey ContainsValue Remove
③排序列表SortedList SortedList<TKey,TValue>
常用方法属性:Add Clear ContainsKey ContainsValue GetByIndex GetKey Remove
④堆栈Stack Stack<T>
常用方法属性:Clear Contains Peek Pop Push ToArray
⑤队列Queue Queue<T>
常用方法属性:Clear Contains Dequeue Enqueue ToArray
⑥点阵列BitArray
常用方法属性:And Get Not Or Set SetAll Xor
标签:ted arraylist table index dict key pop set sorted
原文地址:https://www.cnblogs.com/1016391912pm/p/11616729.html