java註釋是不會被編譯器和直譯器執行的語句。 註釋可以用於提供關於變數,方法,類或任何語句的資訊或解釋。 它也可以用於在特定時間隱藏程式程式碼。
在Java中有3
種型別的注釋。它們分別如下 -
單行注釋僅用於注釋一行,它使用的是 //
兩個字元作為一行註釋的開始,如下語法所示 -
語法:
// This is single line comment
範例:
public class CommentExample1 {
public static void main(String[] args) {
int i = 10;// Here, i is a variable
System.out.println(i);
int j = 20;
// System.out.println(j); 這是另一行註釋,這行程式碼不會被執行。
}
}
上面範例程式碼輸出結果如下 -
10
多行注釋用於註釋多行程式碼。它以 /*
開始,並以 */
結束,在 /*
和 */
之間的程式碼塊就是一個注釋塊,其中的程式碼是不會這被執行的。
語法:
/*
This
is
multi line
comment
*/
範例:
public class CommentExample2 {
public static void main(String[] args) {
/*
* Let's declare and print variable in java.
*
* 這是多行注釋
*/
int i = 10;
System.out.println(i);
}
}
上面範例程式碼輸出結果如下 -
10
文件注釋用於建立文件API。 要建立文件API,需要使用javadoc
工具。
語法:
/**
This
is
documentation
comment
*/
範例:
/**
* The Calculator class provides methods to get addition and subtraction of
* given 2 numbers.
*/
public class Calculator {
/** The add() method returns addition of given numbers. */
public static int add(int a, int b) {
return a + b;
}
/** The sub() method returns subtraction of given numbers. */
public static int sub(int a, int b) {
return a - b;
}
}
通過javac
工具編譯:
javac Calculator.java
通過javadoc
工具建立文件API:
javadoc Calculator.java
現在,將在當前目錄中為上面的Calculator
類建立了HTML檔案。 開啟HTML檔案,並檢視通過文件注釋提供的Calculator
類的說明。如下所示 -