标签:ace bounds 超链接 中文 code 参考 链接 nts author
适用范围:文件、类、方法
(多个作者使用多个@author标签标识,java doc中显示按输入时间顺序罗列。)
例:* @author Leo. Yao
适用范围:方法
例:* @param str the String用来存放输出信息。
适用范围:方法
例: * @return true
执行成功;
? false
执行失败.
用于标识编译该文件所需要的JDK环境。
适用范围:文件、类
例: * @since JDK1.6
用于标识注释对象的版本号
适用范围:文件、类、方法
例: * @version 1.0
表示参考。会在java 文档中生成一个超链接,链接到参考的类容。
用法
@see #field
@see #Constructor(Type, Type...)
@see #Constructor(Type id, Type id...)
@see #method(Type, Type,...)
@see #method(Type id, Type, id...)
@see Class
@see Class#field
@see Class#Constructor(Type, Type...)
@see Class#Constructor(Type id, Type id)
@see Class#method(Type, Type,...)
@see Class#method(Type id, Type id,...)
@see package.Class
@see package.Class#field
@see package.Class#Constructor(Type, Type...)
@see package.Class#Constructor(Type id, Type id)
@see package.Class#method(Type, Type,...)
@see package.Class#method(Type id, Type, id)
@see package
标识出方法可能抛出的异常
适用范围:方法
例: * @throws IOException If an input or output exception occurred
标注此类/接口、方法、字段已经被废止
适用范围:文件、类、方法
链接到一个目标,用法类似@see。但常放在注释的解释中形如{@link …}
/**
- @deprecated As of JDK 1.1, replaced by
- {@link #setBounds(int,int,int,int)}
*/
?```java
/**
```
public class Test extends Button {
/**
- 为按钮添加颜色
- @author Administrator
- @param color
- @return
- @exception (方法有异常的话加)
- @Time2012-11-20 15:02:29
*/
public voidaddColor(String color){
……
}
}
public final class String
implements Java.io.Serializable, Comparable<String>,CharSequence
{
/** The value is used for characterstorage. */
private final char value[];
/** The offset is the first index of thestorage that is used. */
private final int offset;
……
}
public class EmailBody implements Serializable{
private String id;
private String senderName;//发送人姓名
private String title;//不能超过120个中文字符
private String content;//邮件正文
private String attach;//附件,如果有的话
privateSet<EmailList> EmailList;
……
}
标签:ace bounds 超链接 中文 code 参考 链接 nts author
原文地址:https://www.cnblogs.com/ngrzr/p/11906340.html