如何在Java中添加方法描述?我使用NetBeans IDE。
答案 0 :(得分:17)
使用javadoc评论 - / **这是评论* /
请查看此链接以获取详细文档http://en.wikipedia.org/wiki/Javadoc
答案 1 :(得分:14)
您可以使用/ ** comments * /
来使用javadoc对于基本上你可以有
的方法/**
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 :(得分:4)
在您的方法之上编写注释应该按照您的意愿执行 示例:
/**
This method does some serious stuff
*/
public int getN()
{
return n;
}
如果你使用javadocs,它应该是方法的描述。
答案 3 :(得分:3)
答案 4 :(得分:2)
一切都在这里: http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/index.html
我正在添加这句话,因为我上面的回答太短了。 : - )
答案 5 :(得分:2)
我想IDE正在寻找源文件中的javadoc定义。因此,您需要将源附加到项目中使用的库。
答案 6 :(得分:0)
@Description("method name")
methodName<String> getset(){...}
@Description("class name")
class ClassName{..}