비트 연산자는 비트에 대해 작동하고 비트 단위 연산을 수행합니다. Bitwise right shift operator에서 왼쪽 피연산자의 값은 오른쪽 피연산자가 지정한 비트 수만큼 오른쪽으로 이동합니다.
아래 코드에는 −
값이 있습니다.60 i.e. 0011 1100
오른쪽 시프트에서 %빼기;
c = a >> 2;
2번 오른쪽 쉬프트 후 15로 변환 -
15 i.e. 0000 1111
예시
C#에서 Bitwise 오른쪽 시프트 연산자를 구현하기 위해 다음 코드를 실행할 수 있습니다 −
using System; using System.Collections.Generic; using System.Text; namespace Demo { class toBinary { static void Main(string[] args) { int a = 60; /* 60 = 0011 1100 */ int b = 0; c = a >> 2; /* 15 = 0000 1111 */ Console.WriteLine("Value of b is {0}", b); Console.ReadLine(); } } }