为什么我得到<identifier>预期的错误?</identifier>

时间:2014-06-30 18:52:24

标签: java compiler-errors keyword

class return{
        public static void main(String args[]){
            boolean t = true; 
            System.out.println(" this is before");
            if (t) return;
            System.out.println(" this is not going to be printed on the screen");
    }
}

这是我的代码,我的命令行带来了

  

标识符预期错误

谁能解释问题所在?

1 个答案:

答案 0 :(得分:6)

return是一个java关键字,您不能将其用作类名,将其更改为Return或其他有意义的名称