原子无效标志Java

时间:2019-03-20 12:00:39

标签: java atom-editor

我使用的是Atom代码编辑器,我想打印“ hello word”,但是出现错误。

这是我的代码:

class MyClass {
    public static void main(String[ ]args) {
        System.out.println("Hello World");
    }
}

这是错误:

javac: invalid flag: /Users/student/Downloads/coding/test-1.Java
Usage: javac <options> <source files>
use -help for a list of possible options

1 个答案:

答案 0 :(得分:0)

要解决该错误,请重命名文件以使用所有小写的文件扩展名

test-1.java

要遵守Java标准,请确保您的文件和类名相同

MyClass.java