zoukankan      html  css  js  c++  java
  • [C#]System.Collections简介

    System.Collections命名空间包含可使用的集合类和相关的接口。

    该命名空间下的.NET非泛型集合类如下所示:

    — System.Collections.ArrayList:数组集合类,使用大小可按动态增加的数组实现Ilist接口。
    — System.Collections.BitArray:布尔集合类,管理位值的压缩数组,该值为布尔值。
    — System.Collections.Queue:队列,表示对象的先进先出集合。
    — System.Collections.Stack:堆栈,表示对象的简单的后进先出集合。
    — System.Collections.Hashtable:哈希表,表示键/值对的集合,这些键/值对根据键的哈希代码进行组织
    — System.Collections.SortedList:排序集合类,表示键/值对的集合,这些键和值按键排序并可按键和索引访问。

    该命名空间下的.NET非泛型接口如下所示:

    — System.Collections.ICollection:定义所有集合的大小,枚举器和同步方法
    — System.Collections.IComparer:比较两个对象的方法
    — System.Collections.IList:表示可按照索引单独访问一组对象
    — System.Collections.IDictionary:表示键/值对的集合
    — System.Collections.IDictionaryEnumerator:枚举字典的元素
    — System.Collections.IEnumerator:支持在集合上进行简单迭代

  • 相关阅读:
    进程池线程池
    线程与其操作方法
    生产者消费者模型
    Java反射机制详解
    ajax跨域原理以及解决方案
    数据库连接池的选择 Druid
    新目标
    让webstorm支持avalon语法自动补全
    使用IDEA和gradle搭建Spring MVC和MyBatis开发环境
    使用IDEA自带的rest client参数传递乱码问题
  • 原文地址:https://www.cnblogs.com/lihaozy/p/1868709.html
Copyright © 2011-2022 走看看