我是 Java 新手,并试图在我的计算机上运行。
一个简单的“hello world 程序”调用方法失败
class helloworld
{
public static void main(String[] param)
{
helloWorld();
System.exit(0);
}
public static void helloWorld();
{
System.out.println("hello world");
}
}
我收到以下错误:
.\helloworld.java:11: error: missing method body, or declare abstract
public static void helloworld();
^