What\'s the difference between
/** * comment * * */
and
/* * * comment * */
in Java? When shou
The first is Javadoc comments. They can be processed by the javadoc tool to generate the API documentation for your classes. The second is a normal block comment.
javadoc