gpt4 book ai didi

java - 如何在 javadoc 中显示构造函数注释?

转载 作者:行者123 更新时间:2023-12-01 06:42:13 25 4
gpt4 key购买 nike

我有一个带有带有 getter 和 setter 的构造函数的类,需要为它们创建一个 javadoc。

当我制作 javadoc 时,getter 和 setter 都有自己的注释,但由于某种原因,构造函数没有出现在 javadoc 中。注意:我正在 CMD 中创建 javadoc。我尝试过更改 HTML 版本,但仍然一无所获

该类如下所示:

/**
* PersonalDetails class
*
* <p>Details the general information of a person involved in Saint Louis
University
*/

public class PersonalDetails {
private String name;

/**
* Creates a person with the specified characteristics
* @param name a String containing the name of the person
* @param sy a String specifying the current school year
* @param idNo a String containing the id number of the person
*/
PersonalDetails(String name, String sy, String idNo){
this.name = name;
this.sy = sy;
this.idNo = idNo;
}

/**
* Registers the name of the person
* @param name a String containing the name of the person
*/
public void setName(String name) {
this.name = name;
}

/**
* Retrieves the name of the person
* @return a String representing the name of the person
*/
public String getName() {
return name;
}

}

我需要让构造函数 PersonalDetails 的 block 注释出现在 javadoc 中。

最佳答案

使用 -package flag 调用 javadoc因此它包含包私有(private) API 成员。

-package
Shows only package, protected, and public classes and members.

关于java - 如何在 javadoc 中显示构造函数注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55613538/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com