在C中关闭各个位

时间:2016-03-08 18:52:35

标签: c

要设置JobMaster (multijob) MultiJobPhase name: Build job: CentosJob(multiconfiguration), (axis: i686 and x86) job: UbuntuJob(multiconfiguration), (axis: i686 and x86) 中的最低位,我可以执行此操作:

unsigned char

但我怎么能关掉这面旗帜?

1 个答案:

答案 0 :(得分:2)

使用按位非运算符:

my_unsigned_char = my_unsigned_char & ~1;