1. 程式人生 > >Java學習筆記(1)——HelloWorld!

Java學習筆記(1)——HelloWorld!

檔名需與類名一致

  1. Java儲存的檔名必須與類名一致;
  2. 如果檔案中只有一個類,檔名必須與類名一致;
  3. 一個Java檔案中只能有一個public類;
  4. 如果檔案中不止一個類,檔名必須與public類名一致;
  5. 如果檔案中不止一個類,而且沒有public類,檔名可與任一類名一致。

我的第一個Java程式:Hello World!

Linux環境下:

建立檔案 HelloWorld.java

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

注:String args[] 與 String[] args 都可以執行,但推薦使用 String[] args,這樣可以避免歧義和誤讀。

執行以上例項,輸出結果如下:

$ javac HelloWorld.java
$ java HelloWorld
Hello World

執行命令解析:
以上我們使用了兩個命令javacjava

javac 後面跟著的是java檔案的檔名,例如 HelloWorld.java。 該命令用於將* java* 原始檔編譯為 class 位元組碼檔案,如: javac HelloWorld.java

執行javac命令後,如果成功編譯沒有錯誤的話,會出現一個 HelloWorld.class

的檔案。

java 後面跟著的是java檔案中的類名,例如 HelloWorld 就是類名,如: java HelloWorld

注意:java命令後面不要加.class

Windows環境下使用eclipse

以下來自eclipse官方教程

Create a Hello World application
This cheat sheet shows you how to create the famous “Hello World” application and try it out. You will create a Java project and a Java class that will print “Hello world!” in the console when run.
If you need help at any step, click the (?) to the right. Let’s get started!

Open the Java perspective
If you’re not already in the Java perspective, in the main menu select Window > Open Perspective > Java or click on the “Click to Perform” link below.

Create a Java project
Before creating a class, we need a project to put it in. In the main toolbar, click on the New Java Project button, or click on the link below. Enter HelloWorld for the project name, then click Finish.

Create a Java Class
The next step is to create a new class. In the main toolbar again, click on the New Java Class button (or the link below). If not already specified, select HelloWorld/src as the source folder. Enter HelloWorld for the class name, select the checkbox to create the main() method, then click Finish.
The Java editor will automatically open showing your new class.

Add a print statement
Now that you have your HelloWorld class, in the main() method, add the following statement:
System.out.println(“Hello world!”);
Then save your changes; the class will automatically compile upon saving.

Run your Java Application
To run your application, right-click on your class in the Package Explorer and select Run As > Java Application. The Console view should appear at the bottom and display the “Hello, world!” output.
Congratulations! You have successfully created a Hello World application!

建立一個Hello World應用程式
這個“小抄”向你展示如何建立著名的“Hello World”應用程式, 去嘗試一下吧。 你將建立一個Java專案和Java類,在控制檯執行時來列印“Hello world!” 。
如果您需要任何步驟的幫助,請點選右側的(?)。 讓我們開始吧!

開啟Java檢視
如果你還沒有在Java檢視中,請在主選單中選擇“視窗”>“開啟檢視”>“Java”,或單擊下面的“點選執行”連結。

建立Java專案
在建立一個類之前,我們需要一個專案來放置它。在主工具欄中,單擊New Java Project按鈕,或單擊下面的連結。 為專案名稱輸入HelloWorld,然後單Finsh

建立Java類
下一步是建立一個新類。 再次回到主工具欄中,單擊New Java Class按鈕(或下面的連結)。 如果尚未指定,請選擇HelloWorld / src作為原始檔夾。 為類名輸入HelloWorld,選中複選框以建立main()方法,然後單擊Finish
Java編輯器將自動開啟顯示你的新類。

新增列印語句
現在你擁有了你的HelloWorld類,在main()方法中新增以下語句:
System.out.println(“Hello world!”);
然後儲存您的更改; 該類將在儲存時自動編譯。

執行你的Java應用程式
要執行應用程式,請在包資源管理器中右鍵單擊您的類,然後選擇Run As > Java Application。 控制檯檢視應顯示在底部,並顯示“Hello,world!”輸出。
恭喜! 您已經成功建立了一個Hello World應用程式!