怎么解决Cannot make a static reference to the non-static method
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/06 07:21:52
怎么解决Cannot make a static reference to the non-static method menu() from the type
像方法main()有static一样,那么main()方法就是静态的.那么在类中任何地方可被使用的任何方法都需要有关键字static声明.追问:\x0d稍等,我帮你看代码,如果main()方法去掉了,这个程序就没得入口函数了,就不能运行了.main()是必须的.追问:\x0d你这个opt =menu();语法错误了.把第声明int menu()改成public static int menu()追问:\x0d我没有加public,我把int menu()改成了static int menu()之后就可以了public是公共的意思如果不加呢?会变成不是公共的吗?对了哥哥我如果把public static void main(String[] args)中static去掉public void main(String[] args)就像这样去掉之后会对整个代码造成什么样的影响呢?是不是也能解决opt =menu();的语法错误呢?回答:\x0d如果在缺省的情况下(就是不加public),系统会默认为公开的.\x0d如果改了main()整个程序都无法运行,程序就没有入口点了.如果它不像写static,可以new 一个该类的对象,然后用对象调用方法,但是这样就很麻烦了.还有,main()函数的必须声明为static 形式,JVM只认识这种形式的入口函数.
java中的Cannot make a static reference to the non-static field
The method main cannot be declared static; static methods ca
The static method currentThread() from the type Thread shoul
sleep through the static 怎么译?
java中static method和object method之间是什么关系?
public class A { static int i=0; void method(){ System.out.p
The serializable class *** does not declare a static final s
英语翻译Static LoadsA static load model expresses the characteri
java static
#include main(){ static char *a,*b="vhgfj";static char*c=a;f
英语翻译1、 A rigid body is in static equilibrium if:(1)The vecto
static int a[3]={0,1,2}中得static什么意思?