0
What's the difference between Java documents comment and other two Comments
3 odpowiedzi
+ 1
The JDK javadoc uses doc comments when preparing automatically generated documentation. // and /* are single and multiple line comments and just that.
0
//👈 single line. 👉/** Multiple Line
0
//single line comment
/* multiple
line comment/
/** doc comment, also multiple line */