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.
我刚刚为我的 Java 项目创建了一个 Javadoc 文档,但我指出信息太多:我只想编写公共接口(我的所有类的 id est 构造函数和公共方法)。相反,我看到了诸如“从类 javax.swing.JFrame 继承的方法”和其他我绝对不想要的信息。javadoc 可以只记录公共接口吗?我谢谢大家
您可以使用执行 Javadoc 工具时传递的命令行选项来定义要生成的文档级别。您想要的选项是-public.
-public
您可以在参考指南中阅读更多相关信息。