Is there an easy and elegant way to convert an unsigned byte value to a signed byte value in java? For example, if all I have is the int value 240 (in binary (24 bits + 11110000) = 32bits), how can I get the signed value for this int?
|
|
|
Java does not have unsigned values. Consider this snippet:
The result will be -1, because the lowest 8 bits got copied over to the byte variable. |
|||||||||||||
|
|
In Java all the primitive types are signed. You can't have an unsigned byte. The only thing you may do is to cast the unsigned byte to an int so you can read its proper value:
If you want to store an unsigned byte value in a byte type, you obviously can, but every time you need to "process" it, just remember to cast it again as showed above. |
|||||||||||||
|
|
Java only supports signed bytes so whenever you place a value in a byte, its assumed to be signed.
However if you want to store an unsigned byte, you need to handle this yourself. (i.e. Java doesn't support it but you can do it) For operations like +, -, *, <<, >>>, ==, !=, ~ you don't need to change anything, For operations like <, > you need to have make minor adjustments, and for operations like /, % you need to use a larger data type. A common alternative is to use a larger data type like |
|||
|
|
|
I'm not 100% sure, but I think that:
should do the work. |
|||
|
|