是一个从方法声明中添加 javadoc 注释的工具
我想知道有什么工具可以从方法声明等生成javadoc的注释吗?
I am wondering there is any tool can generate the javadoc's comment from the method declarations etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如 @Bart 所评论的,流行的 IDE 可以从方法声明中生成 Javadoc 框架。不过,内容需要你自己填写。而且您会更好 - 事实上,没有 Javadoc 比有大量自动生成的 Javadoc 不包含有用的(或更糟糕的是,过时的)信息要好。因此,在使用 IDE 自动生成 Javadoc 时请小心...
As @Bart commented, popular IDEs can generate the Javadoc skeleton from your method declaration. However, the content you have to fill in yourself. And you would better - in fact, it is better to have no Javadoc than to have loads of autogenerated Javadoc containing no useful (or even worse, obsolete) information. So please be careful when (ab)using your IDE to autogenerate Javadoc...
JAutodoc 是一个具有此功能的 Eclipse 插件。
JAutodoc is an Eclipse plugin that has this functionality.
我相信 Eclipse 和 NetBeans 都有能力做到这一点。当然,他们只是生成大纲,没有任何实际描述。
I believe that Eclipse and NetBeans both have facilities to do this. They just generate the outline, of course, no actual description of anything.