BitArray類管理一個位值數組,這些值表示為布爾值,其中true表示bit為1,false表示bit為0。此類包含在名稱空間System.Collections中。 BitArray.LeftShift(Int32)方法用於將位數組的位向左移動一個位置,並在已移動的位置加上零。執行左移操作時,將修改原始BitArray對象。
用法: public System.Collections.BitArray LeftShift (int count);
參數:
count 是一個不可變的值類型,表示帶符號的整數,值的範圍為負2147483648至正2147483647。
返回值:它返回位數組。
示例1:假設我們有位數組10011,我們想將其向左移動兩個位置。
最終結果是00110。
// C# program to illustrate the
// BitArray.LeftShift() Method
using System;
using System.Collections;
class GeeksforGeeks {
// Main Method
public static void Main()
{
// Creating a BitArray
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.LeftShift(2));
}
// Displaying the result
public static void Display(IEnumerable myList)
{
foreach(Object obj in myList)
{
Console.WriteLine(obj);
}
}
}
輸出:
False False True True False
示例2:假設我們有位數組100011,我們想將其向左移動三個位置。
最終結果是000100。
// C# program to illustrate the
// BitArray.LeftShift() 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.LeftShift(3));
}
// Displaying the result
public static void Display(IEnumerable myList)
{
foreach(Object obj in myList)
{
Console.WriteLine(obj);
}
}
}
輸出:
False False False True False False
參考:
相關用法
- C# MathF.Exp()用法及代碼示例
- C# MathF.Cos()用法及代碼示例
- C# MathF.Tan()用法及代碼示例
- C# MathF.Abs()用法及代碼示例
- C# MathF.Min()用法及代碼示例
- C# MathF.Sin()用法及代碼示例
- C# MathF.Pow()用法及代碼示例
- C# MathF.Log()用法及代碼示例
- C# MathF.Max()用法及代碼示例
- C# MathF.Cbrt()用法及代碼示例
- C# Char.GetTypeCode()用法及代碼示例
- C# Char.GetHashCode()用法及代碼示例
- C# MathF.Atan()用法及代碼示例
- C# BitArray.RightShift()用法及代碼示例
- C# Int16.GetTypeCode用法及代碼示例
注:本文由純淨天空篩選整理自AmanAgarwal6大神的英文原創作品 BitArray.LeftShift() Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。