- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Comments
Java comments are non-executable statements used for documentation and explanation purposes. Here's a brief overview:
Single-Line Comments:
- Single-line comments start with //.
- They extend from the // marker to the end of the line and are ignored by the compiler.
Multi-Line Comments:
- Multi-line comments are enclosed between /* and */.
- They can span multiple lines and are ignored by the compiler.
Javadoc Comments:
- Javadoc comments are used to generate documentation for Java code.
- They start with /** and end with */.
- Javadoc comments can include special tags like @param, @return, and @throws to provide additional information about methods and classes.
Example
// This is a single-line comment
/*
* This is a multi-line comment.
* It can span multiple lines.
*/
/**
* This is a Javadoc comment for the HelloWorld class.
* It provides information about the class.
*/
public class HelloWorld {
/**
* This is a Javadoc comment for the main method.
* It describes the purpose of the main method.
* @param args Command-line arguments
*/
public static void main(String[] args) {
System.out.println("Hello, World!"); // This is an inline comment
}
}
Summary
Java supports single-line comments (//), multi-line comments (/* */), and Javadoc comments (/** */). Comments are essential for improving code readability, providing explanations, and generating documentation for Java code.