本帖最后由 夏诗瑶 于 2012-9-19 23:42 编辑
你举的例子是通过对象去访问对象自己的方法,而不是main方法自己去访问
下面举个例子:在同一类中写个非静态方法用main方法调用,
public class DemoTest {
public static void main(String[] args) {
show();//Error, //Cannot make a static reference to the non-static method show() from the type DemoTest
}
public void show(){
}
}
|