简体   繁体   中英

Eclipse IDE can't proceed java application

I am using eclipse 2020-03 and write a simple code here.

HelloWorld.java

public class HelloWorld{

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

However when I will try to execute it or click the play button on the designer, this will came out:

在此处输入图片说明

And if I try to select java application the run button is disabled.

Any suggestion/help TIA

Just do what the window tells you to: "Press the 'New Configuration' button". It's.. the blank page with the plus sign in the corner, just as the window is showing you. THEN you can configure whatever you want. Alternatively, right click on any class file that has a main in it, and in the context menu, 'Debug' will show up. (There's almost no reason to even use run, debug gives you hot code replace and you can, well, debug, if you want to. If you set no breakpoints, you won't notice anything).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM