我不知道我哪里错了 我跑完了两个数都是84
package fdsa;
//外部类HelloWorld
public class HelloWorld {
private static int score = 84 ;
public static class SInner{
int socre = 91;
public void show(){
System.out.println("访问外部类中的scoer:" + HelloWorld.score);
System.out.println("访问内部类中的scoer:" + score);
}
}
public static void main(String[] args) {
SInner a = new SInner ();
a.show();
}
}