Hi,
can you increment a hex value in Java? i.e. "hex value" = "hex value"++
|
|
|||||||
|
|
|
What do you mean with "hex value"? In what data type is your value stored? Note that int/short/char/... don't care how your value is represented initially:
|
||
|
|
|
|
Short answer: yes. It's
Longer answer: It's likely your 'hex value' is stored as an integer. The business of converting it into a hexadecimal (as opposed to the usual decimal) string is done with
and from a hex string with
M. |
||
|
|
|
It depends how the hex value is stored. If you've got the hex value in a string, convert it to an Integer, increment and convert it back.
|
||
|
|
|
|
Yes. All ints are binary anyway, so it doesn't matter how you declare them.
|
||
|
|
|
|
The base of the number is purely a UI issue. Internally an integer is stored as binary. Only when you convert it to human representation do you choose a numeric base. So you're question really boils down to "how to increment an integer?". |
||
|
|