首頁 >Java >java教程 >如何在Java程式碼中加入不同的註解?

如何在Java程式碼中加入不同的註解?

王林
王林轉載
2023-09-04 16:21:061472瀏覽

如何在Java程式碼中加入不同的註解?

Java 註解是編譯器和解釋器不執行的語句。註釋可用於提供有關變數、方法、類別或任何語句的資訊。它也可以用於隱藏特定時間的程式碼。

Java 註解的型別

Java 中的註解分為三種型別。

  • 單行註解
  • 多行註解
  • 文件註解
  • #單行註解

    單行註解以//開始,到行尾結束。

    範例 1

    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

    多行註解

    多行註解以 /*開頭,以*/ 結尾,跨多行。

    範例 2

    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

    文件註解

    文件樣式註解以 /**&*/ 結尾,並且跨多行。文件註解必須緊接在類別、介面、方法或欄位定義之前。

    範例 3

    /**
       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中文網其他相關文章!

    陳述:
    本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除