首页 > 其他 > 详细

静态方法调用非静态方法——编译出现错误

时间:2016-11-20 13:06:13      阅读:173      评论:0      收藏:0      [点我收藏+]

 

技术分享

出现:No enclosing instance of type Test_Static is accessible. Must qualify the allocation with an enclosing instance of type Test_Static (e.g. x.new A() where x is an instance of Test_Static).

上面的编译错误:可能由于静态public static main调用类的非静态方法AA

有两种解决办法:

第一种:

将内部类AA定义成静态static的类。

第二种:

将内部类AA在Main类外边定义。

 1、

public class Test_Static {
static class AA{
    public void print(){
        System.out.println("调用类方法");
    }
}
public static void main(String[] args) {
 AA aa=new AA();
 aa.print();
}

}

2、

class AAA{
    public void print(){
        System.out.println("调用类方法");
    }
}
public class Test_Static {
public static void main(String[] args) {
 AAA aa=new AAA();
 aa.print();
}

}

 

静态方法调用非静态方法——编译出现错误

原文:http://www.cnblogs.com/duange/p/6082216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!