Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我见过一些符号或样式Region#layoutInArea(),例如。这如何作用于方法?它与点 ( .) 访问器有关吗?
Region#layoutInArea()
.
该符号Region#layoutInArea()不是代码 - 这是您在 javadoc 中引用方法的方式。
使用它将在呈现的文档中创建一个链接到指定方法的 javadoc 的超链接。
其使用示例:
/** * Does something. * @see Region#layoutInArea() */ public void doSomething() { // }
它也可以用于其他标签,例如@link.
@link