当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# BitArray.RightShift()用法及代码示例


BitArray类管理一个位值数组,这些值表示为布尔值,其中true表示bit为1,false表示bit为0。此类包含在名称空间System.Collections中。 BitArray.RightShift(Int32)方法用于将位数组的位向右移动一位,并在已移位的位置添加零。执行操作右移时,将修改原始BitArray对象。

用法:public System.Collections.BitArray RightShift (int count);

参数:
count 是一个不可变的值类型,表示带符号的整数,值的范围为负2147483648至正2147483647。


返回值:它返回位数组。

示例1:假设我们有位数组10011,我们想将其向右移动两个位置。

最终结果是00100。

// C# program to illustrate the  
// RightShift(Int32) Method 
using System; 
using System.Collections; 
  
class GeeksforGeeks { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // Creating a BitArray of  
        // size 5 named BitArr 
        BitArray BitArr = new BitArray(5); 
  
        // Initializing values in BitArr 
        BitArr[0] = true; 
        BitArr[1] = true; 
        BitArr[2] = false; 
        BitArr[3] = false; 
        BitArr[4] = true; 
  
        // function calling 
        Display(BitArr.RightShift(2)); 
    } 
  
    // Displaying the result 
    public static void Display(IEnumerable myList) 
    { 
        foreach(Object obj in myList) 
        { 
            Console.WriteLine(obj); 
        } 
    } 
}
输出:
False
False
True
False
False

示例2:假设我们有位数组100011,我们想将其向右移动三个位置。

最终结果是011000。

// C# program to illustrate the  
// RightShift(Int32) Method 
using System; 
using System.Collections; 
  
class GeeksforGeeks { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // Creating a BitArray 
        BitArray BitArr = new BitArray(6); 
  
        // Initializing values in BitArr 
        BitArr[0] = true; 
        BitArr[1] = false; 
        BitArr[2] = false; 
        BitArr[3] = false; 
        BitArr[4] = true; 
        BitArr[5] = true; 
  
        // function calling 
        Display(BitArr.RightShift(3)); 
    } 
  
    // Displaying the result 
    public static void Display(IEnumerable myList) 
    { 
        foreach(Object obj in myList) 
        { 
            Console.WriteLine(obj); 
        } 
    } 
}
输出:
False
True
True
False
False
False

参考:



相关用法


注:本文由纯净天空筛选整理自AmanAgarwal6大神的英文原创作品 BitArray.RightShift() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。