JavaDoc 常用标签
JavaDoc 是 Java 中自带的文档工具,用于生成 Java 代码的 API 文档。在 JavaDoc 注释中,可以使用各种标签来标记不同的注释信息,以下是一些常用的 JavaDoc 标签:
@param
用于描述方法参数的说明。
1 2 3 4 5 6 7 8 9
|
public int add(int a, int b) { return a + b; }
|
@return
用于描述方法返回值的说明。
1 2 3 4 5 6 7 8 9
|
public int add(int a, int b) { return a + b; }
|
@throws
用于描述方法抛出的异常的说明。
1 2 3 4 5 6 7 8 9 10 11 12 13
|
public int divide(int a, int b) throws ArithmeticException { if (b == 0) { throw new ArithmeticException("除数不能为零"); } return a / b; }
|
@deprecated
用于标记不推荐使用的方法或类。
1 2 3 4 5 6 7 8
|
@Deprecated public int sum(int a, int b) { return a + b; }
|
@see
用于指向相关的其他类、方法或文档。
1 2 3 4 5 6 7 8 9 10
|
public String getCurrentDate() { Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); return sdf.format(date); }
|
@link
用于指向相关的其他类、方法或文档,并提供一个可点击的链接。
1 2 3 4 5 6 7 8 9
|
public int add(int a, int b) { return MathUtils.add(a, b); }
|
@since
用于描述方法或类添加的版本信息。
1 2 3 4 5 6 7 8 9 10
|
public String getCurrentDate() { Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); return sdf.format(date); }
|
@version
用于描述方法或类的版本信息。
1 2 3 4 5 6 7 8 9 10
|
public int add(int a, int b) { return a + b; }
|
@author
用于描述方法或类的作者信息。
1 2 3 4 5 6 7 8 9 10 11 12
|
public int add(int a, int b) { return a + b; }
|