Integer.parseInt()的参数类型是什么,有什么特殊要求吗
package chang;public class change {
String i="1";
public static void main(String[] args) {
int j;
j=Integer.parseInt(i);
System.out.println(j);
// TODO Auto-generated method stub
}
}
表情所在位置出错,系统提示:Cannot make a static reference to the non-static field i,
为什么,这个方法的参数不是只要是String类型就行吗,新手求教