Is there a way of calculating two hexadecimal value without converting it to int? for example:
String sHex = "f7c0";
String bHex = "040000000";
|
Is there a way of calculating two hexadecimal value without converting it to int? for example:
| |||||||
feedback
|
|
Hexadecimal values are integers - just represented in hex instead of decimal. Can't you just do this?
If not, then you actually meant:
In which case, the fastest way to do this is still by converting them to integers, using something like | |||||||
feedback
|
|
Yes, you can do certain (to be exact: any) calculations with strings that hold representations of hexadecimal values. An easy example would be checking for equality. For this, you convert both strings to lowercase, strip all leading zeroes and apply the String.equals method. Other calculations are more difficult. But hey, when I was young, we did all calculation with paper and pen or with chalk on the board, hence in principle anything that can be computed even if all data have the form of character strings. | |||
|
feedback
|