Java Comments

Java Comments

The Java comments are the statements in a program that are not executed by the compiler and interpreter.

Why do we use comments in a code?

Types of Java Comments

There are three types of comments in Java.

  1. Single Line Comment
  2. Multi Line Comment
  3. Documentation Comment
  1. Java Single Line Comment

    The single-line comment is used to comment only one line of the code. It is the widely used and easiest way of commenting the statements.

    Single line comments starts with two forward slashes (//). Any text in front of // is not executed by Java.

    //This is single line comment

  2. Java Multi Line Comment

    The multi-line comment is used to comment multiple lines of code. It can be used to explain a complex code snippet or to comment multiple lines of code at a time (as it will be difficult to use single-line comments there).

    Multi-line comments are placed between /* and */. Any text between /* and */ is not executed by Java

    Syntax:

    /*
    This
    is
    multi line
    comment
    */

  3. Java Documentation Comment

    Documentation comments are usually used to write large programs for a project or software application as it helps to create documentation API. These APIs are needed for reference, i.e., which classes, methods, arguments, etc., are used in the code.

    To create documentation API, we need to use the javadoc tool. The documentation comments are placed between /** and */.

    Syntax:

    /**

    *

    *We can use various tags to depict the parameter

    *or heading or author name

    *We can also use HTML tags

    *

    */