主方法中创建内部类报错,啥原因求大佬
public class SOuter {
private int a=2;
static int b=1;
public class SInner {
int b=3;
public void show() {
System.out.println("访问外部类中的b:"+SOuter.b);
System.out.println("访问内部类中的b:"+b);
}
}
public static void main(String[] args) {
SInner si=new SInner();
si.show();
}
}