Documentation Comments in Java
The Java language supports three types of comments − Sr.No. Comment & Description 1 /* text */ The compiler ignores everything from /* to */. 2 //text The compiler ignores everything from // to the end of the line. 3 /** documentation */ This is a documentation comment and in general its called doc comment. The JDK… Read More »