C#中的集合类是什么?

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

以下是Collections中的类-

序号类别,说明和用途
1ArrayList
它表示可以单独索引的对象的有序集合。
2Hashtable
它使用键来访问集合中的元素。
3SortedList
它使用键和索引来访问列表中的项目。
4堆栈
表示对象的后进先出集合。
5队列
它表示对象的先进先出集合。
6BitArray
它使用值1和0表示二进制表示形式的数组。

让我们看一下C#中BitArray类的示例-

示例

using System;
using System.Collections;

namespace CollectionsApplication {
   class Program {
      static void Main(string[] args) {
         //创建大小为8的两个位数组
         BitArray ba1 = new BitArray(8);
         BitArray ba2 = new BitArray(8);

         byte[] a = { 60 };
         byte[] b = { 13 };

         //将值60和13存储到位数组中
         ba1 = new BitArray(a);
         ba2 = new BitArray(b);

         //ba1的内容
         Console.WriteLine("Bit array ba1: 60");

         for (int i = 0; i < ba1.Count; i++) {
            Console.Write("{0, -6} ", ba1[i]);
         }
   
         Console.WriteLine();

         //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);

         //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);

         //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