我刚刚开始一个小程序的乐趣,我得到了错误
静态int声明后的Syntax error on token ";", { expected after this token
。
class Counter {
public static int counter;
for(;;) {
}
}
public class Application {
public static void main(String args[]) {
}
}
答案 0 :(得分:3)
for
语句应该在代码块中,例如方法而不是类块
答案 1 :(得分:2)
您必须将for
语句和正文放在方法中。