parseInt究竟做了什么? 因为我的第二个论点是滚动否。哪个没有被解析但是第三个参数是标记,它被解析了。为什么这样?
答案 0 :(得分:1)
String不能像int一样使用。使用parseInt,您可以将字符串转换为int。
public class Program {
public static void main(String[] args) {
String value = "1000";
// Parse with parseInt: the string can be negative.
int result = Integer.parseInt(value);
System.out.println(result);
System.out.println(result + 1);