There is a variable that holds some flags and I want to remove one of them. But I don't know how to remove it.
Here is how I set the flag.
my.emask |= ENABLE_SHOOT;
|
There is a variable that holds some flags and I want to remove one of them. But I don't know how to remove it. Here is how I set the flag.
|
|||||
|
|
Short Answer You want to do an Bitwise AND operation on the current value with a Bitwise NOT operation of the flag you want to unset. A Bitwise NOT inverts every bit (i.e. 0 => 1, 1 => 0).
Long Answer
When you perform a Bitwise AND with Bitwise NOT of the value you want unset.
you are actually doing:
|
|||||||||||
|
to clear a few flags:
|
|||
|
|
|
It's important to note that if the variable being manipulated is larger than an int, the value used in the 'and not' expression must be as well. Actually, one can sometimes get away with using smaller types, but there are enough odd cases that it's probably best to use type suffixes to make sure the constants are large enough. |
|||
|