我是Java新手,有人可以向我解释这种方法有什么问题:
clas Hello {
public static void main (String[]arg) {
Document.write ("hello world") ;
}}
答案 0 :(得分:14)
这是编译器输出:
Hello.java:1: 'class' or 'interface' expected
clas Hello {
^
1 error
这意味着,您应该键入class
或interface
(在您的情况下,它应该是类)
假设您在此处复制/粘贴时出错,编译器报告的问题是:
Hello.java:3: cannot find symbol
symbol : variable Document
location: class Hello
Document.write ("hello world") ;
^
1 error
这意味着,编译器对名为Document
的类没有任何了解,找不到符号就意味着在这种情况下。
也许你想写:
System.out.println("Hello world");
完整的运行程序:
public class Hello {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
答案 1 :(得分:5)
你可能意味着这个:
public class Hello {
public static void main(String[] args) {
System.out.println("hello world");
}
}
答案 2 :(得分:3)
class
。Document
来自哪里?