在C#中,沒有內置的BitSet類,但是可以使用BitArray
類來實現類似的功能
using System;
using System.Collections;
class MainClass {
public static void Main (string[] args) {
// 創建一個包含10位的BitArray,初始值為true
BitArray bitArray = new BitArray(10, true);
// 遍歷并打印每一位的值
for (int i = 0; i < bitArray.Length; i++) {
Console.WriteLine("Bit at position " + i + ": " + bitArray[i]);
}
}
}
在這個例子中,我們首先創建了一個包含10位的BitArray
,并將所有位初始化為true
。然后,我們使用一個for循環遍歷BitArray
的每一位,并打印出每一位的值。