gpt4 book ai didi

java - 如何使用 JavaDoc 编写 Action 监听器

转载 作者:行者123 更新时间:2023-11-30 06:06:13 26 4
gpt4 key购买 nike

我有一个 ActionListener:

private ActionListener someAction = new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("Hello World");
}
}

我将如何针对 JavaDoc 对此进行评论。我想我有三个选择:

  • 在上面添加我的评论 private ActionListener...
  • 在上面添加我的评论 @Override
  • 在上面添加我的评论 public void actionPerformed...

最好在哪里添加我的 JavaDoc 注释?

最佳答案

您不应该记录匿名内部类,因为 JavaDoc 工具会忽略它。

The Javadoc tool does not directly document anonymous classes -- that is, their declarations and doc comments are ignored. If you want to document an anonymous class, the proper way to do so is in a doc comment of its outer class, or another closely associated class.

来自Java Docs

关于java - 如何使用 JavaDoc 编写 Action 监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51267660/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com