NetBeans 中的 @Override 修复代码快捷方式
很抱歉问了一个愚蠢的问题,但在 NetBeans 和网络中寻求答案后我很生气 - 是否有任何关键快捷方式可以修复 NetBeans 中的 @Override 注释(例如用于导入的 ctrl+shift+i )?
我非常感谢您的回答,
干杯。
sorry for a silly question but I got angry after seeking the answer in NetBeans and in the net - is there any key shortcut for fixing @Override annotation in NetBeans (something like ctrl+shift+i for imports)?
I do appreciate your answers,
cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 netbeans 7.2 中尝试
Refactor ->检查并转换...
,然后选择
单一检查
和“添加@Override 注释”。然后按照向导操作即可。
In netbeans 7.2 try
Refactor -> Inspect and Transform...
then select the
Single Inspection
and the "Add @Override annotation".Then just follow the wizard.
如果您启用它作为提示,您将获得一个提示指示器,并且 Alt-Enter 将为您提供添加 @Overrides 的选项。
要启用提示,请转到
Tools >选项>编辑>提示> JDK 1.5 及更高版本 >添加@Override注解
If you enable it as a hint, you will get a hint indicator and Alt-Enter will give you the option of adding the @Overrides.
To enable the hint, go to
Tools > Options > Editor > Hints > JDK 1.5 and Later > Add @Override annotation