C# |获取或设置数组中的元素数量

原文:https://www . geesforgeks . org/c-sharp-get-or-set-the-number-in-the-bitarray/

BitArray 类管理一个紧凑的位值数组,这些位值被表示为布尔值,其中 true 表示该位在上是,即 1 ,false 表示该位在下是,即 0 。这个类包含在 系统中。集合 命名空间。 毕泰雷。长度属性用于获取或设置数组中的元素数量。****

属性:

  • BitArray 类是一个集合类,其中的容量始终与计数相同。
  • 通过增加 长度 属性,元素被添加到数组中。
  • 通过减少 长度 属性来删除元素。
  • 可以使用整数索引访问此集合中的元素。此集合中的索引从零开始。

语法:

public int Length { get; set; }

返回值:数组中元素的个数。

异常:如果属性设置为小于零的值,该方法将给出argumentout of range Exception

下面的程序说明了 BitArray 的使用。长度属性:

例 1:

// C# code to get or set the
// number of elements in the BitArray
using System;
using System.Collections;

class GFG {

    // Driver code
    public static void Main()
    {

        // Creating a BitArray myBitArr
        BitArray myBitArr = new BitArray(new byte[] { 0, 0, 0, 1 });

        // Displaying the number of
        // elements in myBitArr
        Console.WriteLine(myBitArr.Length);
    }
}

Output:

32

例 2:

// C# code to get or set the
// number of elements in the BitArray
using System;
using System.Collections;

class GFG {

    // Driver code
    public static void Main()
    {

        // Creating a BitArray myBitArr
        BitArray myBitArr = new BitArray(new byte[] {});

        // Displaying the number of
        // elements in myBitArr
        Console.WriteLine(myBitArr.Length);
    }
}

Output:

0

注:

  • 长度计数返回相同的值。长度可以设置为特定值,但计数是只读的。
  • 如果长度设置为小于计数的值,则数组将被截断,索引值-1 之后的元素将被删除。
  • 如果长度设置为大于计数的值,新元素将设置为假。
  • 检索该属性的值是一个 O(1)操作。设置该属性是一个 O(n)操作。

参考: