gpt4 book ai didi

JavaDoc:在哪里向文档添加注释/备注?

转载 作者:IT老高 更新时间:2023-10-28 20:49:43 28 4
gpt4 key购买 nike

在使用 C# 编码时,我总是发现标签 remarks 对于提供有关类或方法的实现的注释或提供有关我正在实现的理论的信息非常有用。我现在正在使用 Java,但我找不到合适的 JavaDoc 标记。也许在 Java 中你以不同的方式完成此任务,有人知道吗?

最佳答案

据我所知,没有用于注释或备注的专用 Javadoc 标记。一般来说,Javadoc 的第一句话应该对类/方法/字段进行简要说明。然后应遵循完整的描述。如果你想包含任何注释,一个带有“注释:”的专门段落就足够了。

/**
* Brief description. Full description of the method, generally without
* implementation details.
* <p>
* Note: Additional information, e.g. your implementation notes or remarks.
* </p>
* @param input description of the parameter
* @return description of return value
*
* @since version
* @author name of the author
*/
public boolean doSomething(String input)
{
// your code
}

关于JavaDoc:在哪里向文档添加注释/备注?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5619575/

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