Javadoc link to method in other class

后端 未结 3 1014
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-29 21:26

Currently I\'m referencing methods in other classes with this Javadoc syntax:

@see {@link com.my.package.Class#method()}

And in what I understa

3条回答
  •  太阳男子
    2021-01-29 21:44

    For the Javadoc tag @see, you don't need to use @link; Javadoc will create a link for you. Try

    @see com.my.package.Class#method()
    

    Here's more info about @see.

提交回复
热议问题