I have an int and I want to invert the bits of it using the ~ bit operator. This should be a very simply thing to do, however I tried and it doesn't work. I suppose this is because java uses two's complement to represent it's int. So what is the most efficient way to do this? 50 when inverted should be 13 and that's the value I'd like to have
|
It seems you want only the part of the bitwise complement until the most signifficant set bit of the input. Then you just have to mask the complement,
|
|||||
|
|
Java |
|||
|
|
|
Since an But even then ~50 is not 13, only if take the least significant 6 bits into account. But all this doesn't have anything to do with two's complement. |
|||
|
|

charis 8 bits. Are you sure you have your target right? – Toomai Nov 2 '11 at 16:57