• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Cbit操作

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

C 位 操作

一、C bit 操作(C语言 二进制位 操作)

1.Setting a bit
Use the bitwise OR operator (|) to set a bit.

number |= 1 << x;

That will set bit x.

2.Toggling a bit

The XOR operator (^) can be used to toggle a bit.

number ^= 1 << x;

That will toggle bit x.

3.Clearing a bit

Use the bitwise AND operator (&) to clear a bit.

number &= ~(1 << x);

That will clear bit x. You must invert the bit string with the bitwise NOT operator (~), then AND it.

4.Checking a bit

To check a bit, shift the number x to the right, then bitwise AND it:

bit = (number >> x) & 1;

That will put the value of bit x into the variable bit

5.Changing the nth bit to x

二、C decimal 操作 (C语言 十进制位 操作)

1.Get a 位
和二进制的操作比较类似,其中的<<(二进制左移)在10进制里面相当于÷10。在10进制里面可以用循环来实现。

2.Set a 位

参考:


REFERENCE:How do you set, clear and toggle a single bit in C/C++?


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
JavaScript-C引擎嵌入开发指南发布时间:2022-07-14
下一篇:
shell程序---编译目录下全部.c或.cpp文件发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap