卓越飞翔博客卓越飞翔博客

卓越飞翔 - 您值得收藏的技术分享站
技术文章18392本站已运行340

C# 中的集合类是什么?

C# 中的集合类是什么?

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

以下是Collections中的类:

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

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

2Hashtable

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

3SortedList

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

4Stack

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

5Queue

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

6BitArray

它表示使用值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
卓越飞翔博客
上一篇: 别再被忽视了!学习如何设计一份令人印象深刻的PHP程序员求职简历
下一篇: 返回列表
留言与评论(共有 0 条评论)
   
验证码:
隐藏边栏