Java 註解是編譯器和解釋器不執行的語句。註釋可用於提供有關變數、方法、類別或任何語句的資訊。它也可以用於隱藏特定時間的程式碼。
Java 中的註解分為三種型別。
單行註解以//開始,到行尾結束。
public class SingleLineComment { public static void main(String[] args) { // To print output in the console System.out.println("Welcome to Tutorials Point"); } }
Welcome to Tutorials Point
多行註解以 /*開頭,以*/ 結尾,跨多行。
public class MultiLineComment { public static void main(String[] args) { /* To print the output as Welcome to Tutorials Point in the console. */ System.out.println("Welcome to Tutorials Point"); } }
Welcome to Tutorials Point
文件樣式註解以 /**&*/ 結尾,並且跨多行。文件註解必須緊接在類別、介面、方法或欄位定義之前。
/** This is a documentation comment. This class is written to show the use of documentation comment in Java. This program displays the text "Welcome to Tutorials Point" in the console. */ public class DocumentationComment { public static void main(String args[]) { System.out.println("Welcome to Tutorials Point"); } }
Welcome to Tutorials Point
以上是如何在Java程式碼中加入不同的註解?的詳細內容。更多資訊請關注PHP中文網其他相關文章!