最佳答案
我有两个包,Shapes
和 Fruits
:
com.myproject.Shapes.
Circle
Square
Triangle
com.myproject.Fruits.
Apple
Orange
我正在为 Apple
编写 JavaDoc,需要为 Square
提供一个 {@link}
。
我尝试了以下所有方法,但没有一个奏效:
{@link Square}
{@link com.myproject.Square}
我已经能够找到文档来链接到: (a)同一个包中的类,或者(b)外部 URL,但不能链接到另一个包中的类。
有什么想法正确的语法应该是什么? 谢谢!