Java -01-Comments & Javadoc
1️⃣ Java Comments (Source Code Comments)
Comments are ignored by the compiler.They are used for readability, maintenance, and documentation.
🔹 Types of Java Comments
1️⃣ Single-Line Comment
// This is a single-line comment
int a = 10; // Inline com...
shreenibas-java.hashnode.dev7 min read