ホームページ >Java >&#&チュートリアル >Java コードにさまざまなコメントを追加するにはどうすればよいですか?

Java コードにさまざまなコメントを追加するにはどうすればよいですか?

王林
王林転載
2023-09-04 16:21:061495ブラウズ

Java コードにさまざまなコメントを追加するにはどうすればよいですか?

#Java コメントは、コンパイラーやインタープリターによって実行されないステートメントです。コメントを使用して、変数、メソッド、クラス、または任意のステートメントに関する情報を提供できます。特定の時間にプログラム コードを非表示にするために使用することもできます。

Java アノテーションの種類

Java のアノテーションは 3 つの種類に分類されます。

#単一行のコメント
  • 複数行のコメント
  • ドキュメントのコメント
  • 単一行のコメント

    単一行のコメントは // で始まり、行の末尾で終わります。

    例 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 中国語 Web サイトの他の関連記事を参照してください。

  • 声明:
    この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。