为了账号安全,请及时绑定邮箱和手机立即绑定

静态内部类里面定义这个静态方法就出错了。。。

//外部类
public class HelloWorld {
    
    // 外部类中的静态变量score
    private static int score = 84;
    
    // 创建静态内部类
	public  static  class SInner {
        // 内部类中的变量score
        int score = 91;
        
		public static void show() {
			System.out.println("访问外部类中的score:" + HelloWorld.score  );
			System.out.println("访问内部类中的score:" + this.score);
		}
	}

	// 测试静态内部类
	public static void main(String[] args) {
		// 直接创建内部类的对象
        SInner si=new SInner();
        
        // 调用show方法
		si.show();
	}
}


正在回答

2 回答

静态方法只属于当前类而不属于对象所以静态方法中不存在当前对象,因而不能使用“this”,当然也不能使用”super”;

0 回复 有任何疑惑可以回复我~
#1

踽踽行 提问者

非常感谢!
2015-05-03 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

静态内部类里面定义这个静态方法就出错了。。。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信