Invert 1 bit in C#

≡放荡痞女 提交于 2019-12-03 09:57:17

How about:

bit ^= 1;

This simply XOR's the first bit with 1, which toggles it.

If you want to flip bit #N, counting from 0 on the right towards 7 on the left (for a byte), you can use this expression:

bit ^= (1 << N);

This won't disturb any other bits, but if the value is only ever going to be 0 or 1 in decimal value (ie. all other bits are 0), then the following can be used as well:

bit = 1 - bit;

Again, if there is only going to be one bit set, you can use the same value for 1 as in the first to flip bit #N:

bit = (1 << N) - bit;

Of course, at that point you're not actually doing bit-manipulation in the same sense.

The expression you have is fine as well, but again will manipulate the entire value.

Also, if you had expressed a single bit as a bool value, you could do this:

bit = !bit;

Which toggles the value.


More of a joke: Of course, the "enterprisey" way would be to use a lookup table:

byte[] bitTranslations = new byte[256];
bitTranslations[0] = 1;
bitTranslations[1] = 0;

bit = bitTranslations[bit];
par

Your solution isn't correct because if bit == 2 (10) then your assignment will yield bit == 0 (00).

This is what you want:

bit ^= 1;
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!