慕粉1474367326
2016-11-13 23:43
第一张是老师的,第二张图是我自己做的。为什么我的就有错了。
错误显示No enclosing instance of type MethodDemo1 is accessible. Must qualify the allocation with an enclosing instance of type MethodDemo1 (e.g. x.new A() where x is an instance of MethodDemo1). 办法是在class A前面加一个static就可以解决报错
但为什么老师就可以直接 A a1 = new A();不报错呢
main方法是静态方法,静态方法不能直接调用动态方法,class A需要是静态的.
老师的是两个不同的类,你这个A是MethodDemo1的内部类.
反射——Java高级开发必须懂的
151466 学习 · 335 问题
相似问题