类和方法之间的注释中的#是什么意思?

时间:2013-11-01 02:08:09

标签: java documentation comments javadoc

我已经开始在评论和文档中看到类+方法引用,如:

  

MyClass的#myMethod的

即。在类和方法之间使用#。这是某种编码标准/惯例吗?

1 个答案:

答案 0 :(得分:5)

官方指南见How to Write Doc Comments for the Javadoc Tool。 其中:

@see #field
@see #Constructor(Type, Type...)
@see #Constructor(Type id, Type id...)
@see #method(Type, Type,...)
@see #method(Type id, Type, id...)
@see Class
@see Class#field
@see Class#Constructor(Type, Type...)
@see Class#Constructor(Type id, Type id)
@see Class#method(Type, Type,...)
@see Class#method(Type id, Type id,...)
@see package.Class
@see package.Class#field
@see package.Class#Constructor(Type, Type...)
@see package.Class#Constructor(Type id, Type id)
@see package.Class#method(Type, Type,...)
@see package.Class#method(Type id, Type, id)
@see package

要查看@see和@link之间的区别,请查看Another asked Question