语法错误对我没用

时间:2015-01-03 21:51:42

标签: java

我刚刚开始一个小程序的乐趣,我得到了错误 静态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[]) {

    }
}

2 个答案:

答案 0 :(得分:3)

for语句应该在代码块中,例如方法而不是类块

答案 1 :(得分:2)

您必须将for语句和正文放在方法中。