如何向方法或类添加说明
如何在Java中添加方法描述?我使用 NetBeans IDE。
您可以使用 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