我现在还是一个初学者,Integer类的静态方法parseInt()和实例方法intValue()将一个字符串转变成int值。代码分别如下:
int i=Integer.parseInt(“123”);
int j=new Integer().intValue(“123”);