我在 Eclipse 上工作了很多年。决定尝试 IntelliJ Idea 后。Bua 也是简单的 java Hello World 不运行!它只是什么也没发生。我应该检查/调整什么?谢谢。
package test;
/** * Created with IntelliJ IDEA.
* Date: 16/06/12
* Time: 12:13
* To change this template use File | Settings | File Templates.
*/
public class Main {
public static void main(String ...args)
{ System.out.println("Hello World"); }
}