Java注释中的/ **和/ *

Java支持与C和C ++非常相似的单行和多行注释。Java编译器将忽略任何注释中可用的所有字符。

/ **被称为文档注释。Javadoc工具在为程序代码创建文档时使用它。

/ *用于多行注释。

示例

/**
   * This is a documentation comment.
   * This is my first Java program.
   * This will print 'Hello World' as the output
   * This is an example of multi-line comments.
*/
public class MyFirstJavaProgram {
   public static void main(String[] args) {
      /* This is an example of multi line comment. */
      System.out.println("Hello World");
   }
}