C# 中的按位右移运算符

王林
发布: 2023-09-15 18:13:02
转载
1227 人浏览过

C# 中的按位右移运算符

位运算符作用于位并执行逐位运算。在按位右移运算符中,左操作数的值向右移动右操作数指定的位数。

在下面的代码中,我们有值 -

60 i.e. 0011 1100
登录后复制

右移 %minus;

c = a >> 2;
登录后复制

右移两次后转换为 15 -

15 i.e. 0000 1111
登录后复制

示例

您可以尝试运行以下代码来实现 C# 中的按位右移运算符 -

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();
      }
   }
}
登录后复制

以上是C# 中的按位右移运算符的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板