public class Home extends Application {
public static void main(String[] args) {
Application application=new Application();
application.checkAccess();
super.checkAccess();//error,can not use super in a static context
}
}
我曾经认为这两个(超级,应用程序)是相同的。但现在看来他们不是。有什么区别?
答案 0 :(得分:0)
super是对父构造函数的调用,在你的case构造函数中。你不能用静态方法调用构造函数。