标签: bit-manipulation
如何以最有效的方式取消设置最右边的设置位。
例如:
对于12(dec)= 00001100(bin)
我想得到:8(dec)= 00001000(bin)
答案 0 :(得分:1)
没关系,我想以下是最有效的方法:
i = (i - 1) & i