1.String 类型转化为 int 类型,需要使用 Integer 类中的 parseInt() 方法或者 valueOf() 方法进行转换.
int a = Integer.parseInt(str); int b = Integer.valueOf(str).intValue()