错误: 在类 com.HelloWorld.Demo 中找不到主方法, 请将主方法定义为:
public static void main(String[] args)
你程序里面缺少主方法,定义一个主方法
package first; public class demo5 { static String str="Z富川"; int aaa=111; public void show(){ System.out.println(str); System.out.println(aaa); } public static void main(String[] args) { demo5 aa=new demo5(); aa.show(); } }
我这样写可以运行
你的是普通的方法show(),不能调用静态变量hobby,在show()前加一个static