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

静态内部类通过 new 外部类().成员 的方式访问外部类的非静态成员是怎么访问的?

静态内部类通过 new 外部类().成员 的方式访问外部类的非静态成员是怎么访问的?能给写个代码举例吗?谢谢。



正在回答

3 回答

//外部类
public class Demo {
	// 外部类中的静态变量score
	private static int score = 84;
	private int scoref = 12;
	// 创建静态内部类
	public static class SInner {
		// 内部类中的变量score
		int score = 91;
		public void show() {
			System.out.println("scoref:" + new Demo().scoref);
			System.out.println("访问内部类中的score:" + score);
		}
	}
	// 测试静态内部类
	public static void main(String[] args) {
		// 直接创建内部类的对象
		SInner si = new SInner();
		// 调用show方法
		si.show();
	}
}


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

VDer 提问者

非常感谢!
2015-04-07 回复 有任何疑惑可以回复我~
#2

stephen_hj 回复 VDer 提问者

new 外部类().成员怎么看不到这行代码 难道是那样分开写就是合适的吗
2018-03-30 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

静态内部类通过 new 外部类().成员 的方式访问外部类的非静态成员是怎么访问的?

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