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

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

王林
發布: 2023-09-04 16:21:06
轉載
1465 人瀏覽過

如何在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
    最新問題
    熱門教學
    更多>
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板