1. 程式人生 > >Java學習筆記三---unable to launch

Java學習筆記三---unable to launch

world 學習筆記 .com image 新工程 hello unable sta ava

環境配置好後,在eclipse下編寫HelloWorld程序:

①創建新工程

②創建.java文件,命名為HelloWorld

③在源文件中添加main方法,代碼如下:

public void main(String[] args){

String.out.println(“HelloWorld!");

④點擊運行按鈕,彈出如下的信息:

The selection cannot be launched,and there are no recent launnches.

技術分享

⑤檢查代碼,發現main方法的類型漏寫了static,添加後,如下:

public static void main(String[] args)

再點擊運行,成功輸出HelloWorld!

技術分享

⑥查看工程目錄,bin文件夾下生成了HelloWorld.class文件

技術分享

Java學習筆記三---unable to launch