jash.liao的JAVA整理教學:第1個JAVA程式 – Hello World!

jash.liao的JAVA整理教學:第1個JAVA程式 – Hello World!

jash.liao的JAVA整理教學:第1個JAVA程式 – Hello World!

 

線上執行:http://www.tutorialspoint.com/compile_c_online.php / http://www.compilejava.net/

 code2html:http://tohtml.com/

 

// our main class becomes a file but the main method is still found
public class HelloWorld
{
public static void main(String[] args)
{
System.out.print("Hello World!\n");
}
}

 

PS.

     ●JAVA是純物件導向語言所有程式碼都要放在類別之中

     ●JAVA的程式進入點是main函數

     ●System.out.print可以在標準輸出設備上印出字串資料

 

 

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *