C# 中的集合类是什么?

来源:这里教程网 时间:2026-02-21 16:25:27 作者:

c# 中的集合类是什么?

集合类具有各种用途,例如动态分配内存给元素,根据索引访问项目列表等。

以下是Collections中的类:

序号 类别和描述和用法
1 ArrayList

它表示一个可以单独索引的对象的有序集合。

2 Hashtable

它使用键来访问集合中的元素。

3 SortedList

它使用键和索引来访问列表中的项。

4 Stack

它表示一个后进先出的对象集合。

5 Queue

它表示一个先进先出的对象集合。

6 BitArray

它表示使用值1和0的二进制表示的数组。

让我们看一个C#中BitArray类的例子:

例子

 在线演示

using System;
using System.Collections;
namespace CollectionsApplication {
   class Program {
      static void Main(string[] args) {
         //creating two bit arrays of size 8
         BitArray ba1 = new BitArray(8);
         BitArray ba2 = new BitArray(8);
         byte[] a = { 60 };
         byte[] b = { 13 };
         //storing the values 60, and 13 into the bit arrays
         ba1 = new BitArray(a);
         ba2 = new BitArray(b);
         //content of ba1
         Console.WriteLine("Bit array ba1: 60");
         for (int i = 0; i < ba1.Count; i++) {
            Console.Write("{0, -6} ", ba1[i]);
         }
   
         Console.WriteLine();
         //content of ba2
         Console.WriteLine("Bit array ba2: 13");
         for (int i = 0; i < ba2.Count; i++) {
            Console.Write("{0, -6} ", ba2[i]);
         }
         Console.WriteLine();
         BitArray ba3 = new BitArray(8);
         ba3 = ba1.And(ba2);
         //content of ba3
         Console.WriteLine("Bit array ba3 after AND operation: 12");
         for (int i = 0; i < ba3.Count; i++) {
            Console.Write("{0, -6} ", ba3[i]);
         }
         Console.WriteLine();
         ba3 = ba1.Or(ba2);
         //content of ba3
         Console.WriteLine("Bit array ba3 after OR operation: 61");
         for (int i = 0; i < ba3.Count; i++) {
            Console.Write("{0, -6} ", ba3[i]);
         }
         Console.WriteLine();
   
         Console.ReadKey();
      }
   }
}

输出

Bit array ba1: 60
False False True True True True False False
Bit array ba2: 13
True False True True False False False False
Bit array ba3 after AND operation: 12
False False True True False False False False
Bit array ba3 after OR operation: 61
True False True True False False False False

相关推荐