【Unity|C#】基础篇(19)——集合库(Collections)

【学习资料】

  《C#图解教程》(第6章)https://www.cnblogs.com/moonache/p/7687551.html
  电子书下载:https://pan.baidu.com/s/1mhOmBG0

 

【内容】 

    • 非泛型集合
      • ArrayList
      • Hashtable
      • ——————————
      • SortedList
      • ——————————
      • Queue
      • Stack
    • 泛型集合
      • List<T>
      • Dictionary<TKey,TValue>
      • ——————————
      • LinkedList<T>
      • HashSet<T>
      • ——————————
      • SortedList<TKey,TValue>
      • SortedDictionary<TKey,TValue>
      • SortedSet<T>
      • ——————————
      • Queue<T>
      • Stack<T>
    • 线程安全集合
      • ConcurrentBag<T>
      • ConcurrentDictionary<TKey,TValue>
      • ConcurrentQueue<T>
      • ConcurrentStack<T>
    • Hashtable与Dictionary异同点

 


 【笔记】

  •  集合库(Collections)

 

  • Hashtable与Dictionary异同点

     来源:https://www.jianshu.com/p/6e701ee2f0b8

    

 

posted @ 2020-02-12 23:04  夏天的风92  阅读(895)  评论(0)    收藏  举报