Programming Tutorials

Comment on Tutorial - valueOf() in Java By Emiley J



Comment Added by : Xris

Comment Added at : 2011-11-08 06:01:01

Comment on Tutorial : valueOf() in Java By Emiley J
I have this line of code but i don't understand what is meant to do:
String line = "Some data";
int size = -1;
size = Integer.valueOf(line, 16).intValue();

Would you please explain to me what it does in relation to what you said above? Thanx


View Tutorial