ホームページ  >  記事  >  バックエンド開発  >  C# のコレクション クラスとは何ですか?

C# のコレクション クラスとは何ですか?

WBOY
WBOY転載
2023-09-08 17:25:021136ブラウズ

C# 中的集合类是什么?

コレクション クラスには、要素へのメモリの動的割り当て、インデックスに基づいた項目リストへのアクセスなど、さまざまな用途があります。

コレクション内のクラスは次のとおりです:

#2345#6
シリアル番号 カテゴリと説明と使用法
1 ArrayList

これは、個別にインデックスを付けることができる、順序付けられたオブジェクトのコレクションを表します。

Hashtable キーを使用してコレクション内の要素にアクセスします。

SortedList キーとインデックスを使用してリスト内の項目にアクセスします。

スタックこれは、後入れ先出しのコレクションを表します。オブジェクト。

Queueこれは、先入れ先出しのコレクションを表します。オブジェクト。

BitArray 値 1 のバイナリ表現を使用して配列を表しますそして 0 。

C# の BitArray クラスの例を見てみましょう:

Example

オンライン デモ

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

以上がC# のコレクション クラスとは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。