For some reason, the following code does not work:
char cValue = '8';
int digits = (int)cValue;
It keeps giving some value of 5 or 7, or something along those lines.
I'm just curious why - I'm using Character.getNumericValue(cValue); instead.
Why does this happen?
'8'? – Greg Hewgill Sep 20 '11 at 3:01char cValue = 8;. Then the cast should succeed as expected. – Kerrek SB Sep 20 '11 at 3:05