如何獲得 C# 中 BitArray 中包含的元素個數?
要獲得 BitArray 中包含的元素的個數,程式碼如下:
示例
using System;
using System.Collections;
public class Demo {
public static void Main() {
BitArray arr1 = new BitArray(5);
BitArray arr2 = new BitArray(5);
arr1[0] = false;
arr1[1] = false;
arr2[0] = false;
arr2[1] = true;
Console.WriteLine("BitArray1 elements...");
foreach (bool res in arr1) {
Console.WriteLine(res);
}
Console.WriteLine("
BitArray2 elements...");
foreach (bool res in arr2) {
Console.WriteLine(res);
}
Console.WriteLine("
Bitwise OR operation...");
IEnumerable demoEnum = arr1.Or(arr2);
foreach(Object ob in demoEnum) {
Console.WriteLine(ob);
}
Console.WriteLine("
Number of elements in the resultant BitArray = "+arr1.Count);
}
}輸出
它將產生以下輸出:
BitArray1 elements... False False False False False BitArray2 elements... False True False False False Bitwise OR operation... False True False False False Number of elements in the resultany BitArray = 5
示例
現在讓我們看另一個示例:
using System;
using System.Collections;
public class Demo {
public static void Main() {
BitArray arr = new BitArray(2);
arr[0] = false;
arr[1] = true;
Console.WriteLine("Elements in BitArray...");
foreach (bool res in arr) {
Console.WriteLine(res);
}
Console.WriteLine("
Number of elements in the BitArray = "+arr.Count);
bool[] boolArr = new bool[2];
boolArr[0] = true;
boolArr[1] = false;
arr.CopyTo(boolArr, 0);
Console.WriteLine("
Array...");
foreach(Object obj in boolArr) {
Console.WriteLine(obj);
}
}
}輸出
它將產生以下輸出:
Elements in BitArray... False True Number of elements in the BitArray = 2 Array... False True
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 語言程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP