I want to know which value the first bit of a byte has.
For example:
I have byte m = (byte) 0x8C;
How could I know if the first bit is an 1 or a 0 ?
Can anyone help me out ?
|
I want to know which value the first bit of a byte has. For example: I have How could I know if the first bit is an 1 or a 0 ? Can anyone help me out ? |
|||||
|
|
It depends what you mean by "first bit". If you mean "most significant bit" you can use:
Or if you don't mind the values being 0x80 or 0, just use:
Or in fact, as a
If you mean the least significant bit, you can just use:
|
|||||||||||||
|
|
If the first bit is the lowest bit (ie bit 0), then
should do it. In general,
will give you whether or not bit |
|||
|
|
|
Use the bitwise and operator.
|
|||
|
|
|
Assuming you mean leftmost bit, bitwise and it with 0x80 and check if it is zero nor not:
If you mean lowest order bit you will need to and with 0x01 and check a different condition:
|
||||
|
|
|
Its a bit of a hack but you can use
This works for However for most types the simplest approach is to compare with 0
This works for (Ignoring negative zero and negative NaN, most people do ;) For
|
|||
|
|