+ 2
What is the difference between multi line comment and documentaion comment?
4 ответов
+ 10
Did someone ask this already? :D
https://www.sololearn.com/Discuss/873247/?ref=app
+ 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.
0
/*....
.... This is a multi line comment.
....*/
//This is a single line comment.
I believe documentation types have something to do with <!doctype>
0
Quzê kerê