Java 注释中的 /** 和 /*

java programming java8object oriented programming

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");
   }
}

相关文章