What is the difference between multi line comment and documentaion comment? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is the difference between multi line comment and documentaion comment?

30th Nov 2017, 4:47 PM
RamaLakshmi Moorthi
4 Answers
+ 10
Did someone ask this already? :D https://www.sololearn.com/Discuss/873247/?ref=app
30th Nov 2017, 5:07 PM
Dev
Dev - avatar
+ 2
Multi-line comment is just a comment in your code that's stored on multiple lines. JAVADOC is a really neat tool that's built into Java, which allows you to document your code internally while you're coding, and then when you're done you can have the compiler generate the JAVADOC file, which is an HTML page that's generated with all of your JAVADOC comments. It's very organized and easy to use, it's worth learning JAVADOC; it's been priceless to me.
30th Nov 2017, 4:56 PM
AgentSmith
0
/*.... .... This is a multi line comment. ....*/ //This is a single line comment. I believe documentation types have something to do with <!doctype>
1st Dec 2017, 8:02 AM
Rizan
Rizan - avatar
0
Quzê kerê
3rd Dec 2017, 1:25 AM
Serki Yildirim
Serki Yildirim - avatar