BitArray类管理一个紧凑的位值数组,这些值表示为布尔值,其中true表示该位打开,即1 ,false表示该位关闭,即0 。此类包含在System.Collections命名空间中。
BitArray.GetEnumerator方法用于获取枚举器,该枚举器迭代BitArray。
特性:
- BitArray类是一个集合类,其中容量始终与计数相同。
- 通过增加Length属性将元素添加到BitArray中。
- 通过减小Length属性来删除元素。
- BitArray类提供诸如And,Or,Xor,Not和SetAll之类的方法。
- 可以使用整数索引访问此集合中的元素。此集合中的索引从零开始。
句法:
public System.Collections.IEnumerator GetEnumerator ();
返回值:该方法返回整个BitArray的IEnumerator。
下面的程序说明了BitArray.GetEnumerator方法的用法:
范例1:
// C# code to return an enumerator
// that iterates through the BitArray
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a BitArray myBitArr
// Initializing all the values to true
BitArray myBitArr = new BitArray(5, true);
// Function calling
PrintIndexAndValues(myBitArr);
}
// Function to display bits
public static void PrintIndexAndValues(IEnumerable myArr)
{
foreach(Object obj in myArr)
{
Console.WriteLine(obj);
}
}
}
输出:
True
True
True
True
True
范例2:
// C# code to return an enumerator
// that iterates through the BitArray
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a BitArray myBitArr
BitArray myBitArr = new BitArray(5);
// Initializing all the bits in myBitArr
myBitArr[0] = false;
myBitArr[1] = true;
myBitArr[2] = true;
myBitArr[3] = false;
myBitArr[4] = true;
// Function calling
PrintIndexAndValues(myBitArr);
}
// Function to display bits
public static void PrintIndexAndValues(IEnumerable myArr)
{
foreach(Object obj in myArr)
{
Console.WriteLine(obj);
}
}
}
输出:
False
True
True
False
True
笔记:
- C#语言的foreach语句隐藏了枚举器的复杂性。因此,建议使用foreach ,而不是直接操作枚举器。
- 枚举数可用于读取集合中的数据,但不能用于修改基础集合。
- 只要集合保持不变,枚举数将保持有效。如果对集合进行了更改(例如添加,修改或删除元素),则枚举数将无法恢复,并且其行为是不确定的。
- 此方法是O(1)操作。
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.bitarray.getenumerator?view=netframework-4.7.2