Error: Could not find or load main class HelloNewWorld
我知道这与我保存项目的地方有关,但Syntax error on Token(s), misplaced Construct(s)
-Syntax error on token ""Hello World"", delete this token
我从来没有在另一个java IDE上得到它,顺便说一下,我刚吃完了,虽然我经验丰富用Java。
代码:
package ScratchPackage;
public class ScratchHelloClass {
System.out.print("Hello World");
}
答案 0 :(得分:0)
System.out.print("Hello World");
此行必须位于方法内。 Java程序的主要入口点是public static void main(String[] args)
方法签名,因此只需将该行代码包装在main方法中:
public static void main(String[] args) {
System.out.print("Hello World");
}
您应该从头开始阅读Java教程:http://docs.oracle.com/javase/tutorial/getStarted/index.html
答案 1 :(得分:0)
package javaapplication1;
public class JavaApplication1 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("Hello World");
}
}
你忘记了主要方法。 :)