#Java コメントは、コンパイラーやインタープリターによって実行されないステートメントです。コメントを使用して、変数、メソッド、クラス、または任意のステートメントに関する情報を提供できます。特定の時間にプログラム コードを非表示にするために使用することもできます。
Java のアノテーションは 3 つの種類に分類されます。
#単一行のコメント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 中国語 Web サイトの他の関連記事を参照してください。