Why we need the documentation comment in Java? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why we need the documentation comment in Java?

25th Jun 2018, 4:46 PM
Archana
Archana - avatar
2 Answers
+ 10
You can generate doc files (html) from the Javadoc comments. You wouldn't want to use an api without Javadocs, which allows you to read the documentation for every class without opening it from an external source. The IDEs link these doc files and show them on a mouse over or something right from the source code you're writing. Very useful.
25th Jun 2018, 5:59 PM
Tashi N
Tashi N - avatar
+ 4
Archana So the next coder/developer does not have to waste time, figuring out what the code does. Comments should have enough detail to understand how the code functions.
25th Jun 2018, 5:30 PM
Manual
Manual - avatar