System: Windows Vista 32-bit, Java 6.0.2
I have a few questions about converting chars to ints. I run the code below, leaving myInt with a value of 4:
char myChar = '4';
int myInt = myChar - '0';
Now, is this conversion something that Java does automatically? Was the ascii value of '0' subtracted from ascii '4', and then cast to an int behind the scenes? This is confusing for me because when I try to the reverse operation, I have to actually cast the result as a char:
int anotherInt = 5;
char newChar = anotherInt + '0'; //gives error
char newChar = (char)(anotherInt + '0'); //works fine
Is this occuring because Java is automatically casting (anotherInt + '0') to an int, as in the first example? Thank you.
ints andlongs and see what happens.int myInt = 1L– Jonathon Nov 19 '10 at 1:15