这是我无法理解的java代码行.
String line = "Some data";//I understand this line
int size;//I understand this line too
size = Integer.valueOf(line,16).intValue();//Don't understand this one
Run Code Online (Sandbox Code Playgroud)
我所知道的是Integer.ValueOf(行)与Integer.parseInt(行)相同,是不是这样?如果我错了,请纠正我; 谢谢.