Java Comments


Java Comments

In this tutorial, we will learn how to write comments in Java language. We will go through the different types of comments and how to use them in a program.


What are Comments

Comments are non-executable statements that are used to explain and document the code. They help improve the readability of the code and make it easier for others to understand. Comments can also be used to temporarily disable code during testing and debugging.


Syntax

The syntax to define comments in Java is:

// Single line comment
/* Multi-line comment
   continues here */


Single line comments

  1. Single line comments in Java start with // and continue to the end of the line.
  2. They are used to add short explanations or notes within the code.

Java Program

public class HelloWorld {
  public static void main(String[] args) {
    // Print Hello, World! to the console
    System.out.println("Hello, World!");
  }
}

Output

Hello, World!


Multiline comments

  1. Multiline comments in Java start with /* and end with */.
  2. They can span multiple lines and are used for longer explanations or to comment out blocks of code.

Java Program

public class HelloWorld {
  public static void main(String[] args) {
    /* Print Hello, World! to the console
       This is a multi-line comment */
    System.out.println("Hello, World!");
  }
}

Output

Hello, World!