剛裝了eclipse,想寫個Java程序測試一下能不能用,結果一run就出現錯誤,Debug也是一樣的錯誤,錯誤內容爲:the selection cannot be launched,and there are no recent launches.因爲是初學者,對於Java徹底不懂,就上網搜索發現說右鍵項目選擇run再選擇run as application,發現找不到這個。app
如下是代碼eclipse
1 package test; 2 3 public class test { 4 5 static void main(String[] arg) 6 { 7 System.out.println("Hello World"); 8 } 9 }
發現須要加一個public在static前,而且String的S必須爲大寫,而且main必定要拼寫正確。改正後的代碼以下測試
package test; public class test { public static void main(String[] arg) { System.out.println("Hello World"); } }
發現能夠運行,成功輸出結果Hello Worldspa
2018.09.18code