单行注释://
多行注释:/**/
文档注释:/***/
/**加回车即可打出文档注释的框架
java常用的文档注释标签
1、@author:标识一个类的作者
实例: @author description
2、@deprecated:指名一个过期的类或成员
实例: @deprecated description
3、@exception:标志一个类抛出的异常
实例:@exception exception-name explanation
4、@inheritDoc:从直接父类继承的注释
实例:@inheritDoc Inherits a comment from the immediate surperclass
5、@link:插入一个到另一个主题的链接
实例:@link name text
6、@linkplain:插入一个到另一个主题的链接,但是该链接显示纯文本字体
实例:@inheritDoc Inserts an in-line link to another topic
7、@param:说明一个方法的参数
实例:@param parameter-name explanation
8、@return:说明返回值类型
实例:@return explanation
9、@see:指定一个到另一个主题的链接
实例:@see anchor
10、@serial:说明一个序列化属性
实例:@serial description