I have been reading over some code lately and came across some lines such as:
somevar &= 0xFFFFFFFF;
What is the point of anding something that has all bits turned on; doesn't it just equal somevar in the end?
|
|
|||||||||||||
|
|
|
"somevar" could be a 64-bit variable, this code would therefore extract the bottom 32 bits. edit: if it's a 32-bit variable, I can think of other reasons but they are much more obscure:
|
|||
|
|
|
|
I suppose it depends on the length of somevar. This would, of course, not be a no-op if somevar were a 64-bit int. Or, is somevar is some type with an overloaded |
||
|
|
|
Indeed, this wouldn't make sense if Note that a |
||||||||||||||||
|
|
|
sometimes the size of |
||
|
|
|
|
hi there, yes definitely to truncate 32 bits on a 64 bit environment. |
||
|
|
|
|
If the code fragment was C++, then the |
||
|
|