如何向方法或类添加说明

2022-09-01 19:55:30

如何在Java中添加方法描述?我使用 NetBeans IDE。

JavaDoc example


答案 1

您可以使用 javadocs 使用 /** 注释 */

对于一种方法,基本上你可以有

/**
The Desciption of the method to explain what the method does
@param the parameters used by the method
@return the value returned by the method
@throws what kind of exception does this method throw
*/

您可以使用此链接获取进一步的帮助 http://www.oracle.com/technetwork/java/javase/documentation/index-137868.html#descriptions


答案 2

使用 javadoc 注释 - /** 这是一个注释 */

查看此链接,了解详细的文档 http://en.wikipedia.org/wiki/Javadoc


推荐