C# 中的左移和右移运算符 (>> and <<)


位级左移运算符

左操作数的值向左移动右操作数指定的比特位数。

位级右移运算符

左操作数的值向右移动右操作数指定的比特位数。

以下示例展示了如何使用位级左移和右移运算符 −

示例

 实际案例

using System;

namespace Demo {

   class Program {

      static void Main(string[] args) {

         int a = 60; /* 60 = 0011 1100 */
         int b = 13; /* 13 = 0000 1101 */
         int c = 0;

         c = a << 2; /* 240 = 1111 0000 */
         Console.WriteLine("Value of c is {0}", c);

         c = a >> 2; /* 15 = 0000 1111 */
         Console.WriteLine("Value of c is {0}", c);
         Console.ReadLine();
      }
   }
}

输出

Value of c is 240
Value of c is 15

更新时间: 2020 年 6 月 20 日

783 人浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告