Write Single Line Comment in Java



To comment a particular line just place ?double back slash (//)' before the line as shown below.

// Hello this line is commented

Example

Following example demonstrates the usage of single line comments in Java.

Live Demo

public class CommentsExample {
   public static void main(String args[]) {
      //Declaring a variable named num
      int num = 1;
      //Printing the value of the variable num
      System.out.println("value if the variable num: "+num);
   }
}

Output

value if the variable num: 1
Updated on: 2019-07-30T22:30:20+05:30

525 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements