标签: bit-manipulation bitwise-operators
我知道如何使用xor。我需要一个不使用xor的解决方案
答案 0 :(得分:1)
使用~运算符:
~
int b = 0; int a = ~b;