1. 程式人生 > >Java小白入門學習筆記demo1輸出helloworld

Java小白入門學習筆記demo1輸出helloworld

out hello string 語句 返回 學習筆記 print [] system

public class Hello{
//公共 類 類名
  public static void main(String[] args){

// 公共 靜態 無返回值 主方法(字符串[] 參數)
    System.out.println("helloworld");

//    系統.輸出.打印換行(輸出內容);

//    輸出語句,首字母必須大寫,println為輸出內容後自動換行,print輸出內容不換行

  }
}

Java小白入門學習筆記demo1輸出helloworld