标签:error 括号 expect stat world class static print hello
这个问题主要是因为定义类的时候在类名后边加了个括号();
`public class Hello {
public static void main(String[] args) {
System.out.print("Hello World!");
System.out.println();//换行
System.out.println("Hellow World!");
}
}
class Person(){
}
class Animal{
}
`
如上就是这个问题,可能是因为和函数混了。
Syntax error on token "class", @ expected
标签:error 括号 expect stat world class static print hello
原文地址:https://www.cnblogs.com/lijiacheng/p/14613182.html