C#之集合

2018-06-17 22:48:37来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

  数组(http://www.cnblogs.com/afei-24/p/6738128.html)的大小是固定的。如果元素的个数是动态的,就应使用集合类。
    列表(http://www.cnblogs.com/afei-24/p/6824791.html)
    队列(http://www.cnblogs.com/afei-24/p/6829817.html)
    栈(http://www.cnblogs.com/afei-24/p/6830071.html)
    链表(http://www.cnblogs.com/afei-24/p/6830160.html)
    有序列表(http://www.cnblogs.com/afei-24/p/6830376.html)
    字典(http://www.cnblogs.com/afei-24/p/6835222.html)
    集(http://www.cnblogs.com/afei-24/p/6835365.html)
    可观察的集合(http://www.cnblogs.com/afei-24/p/6835420.html)
    位数组(http://www.cnblogs.com/afei-24/p/6835720.html)
    不变的集合(http://www.cnblogs.com/afei-24/p/6835985.html)
    并发集合(http://www.cnblogs.com/afei-24/p/6836976.html)
  大多数集合类都在System.Collections和System.Collections.Generic名称空间中。泛型集合类位于System.Collections.Generic名称空间中;专用于特定类型的集合类位于System.Collections.Specialized名称空间中。线程安全的集合类位于    System.Collections.Concurrent名称空间中。不可变的集合类位于System.Collections.Immutable名称空间中。

  集合和列表实现的接口如下:

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:asp.net FileUpload上传文件夹并检测所有子文件

下一篇:mc:Ignorable="d"什么意思?