eclipse,如何在不添加新括号的情况下更改方法调用?
是否可以使用 eclipse 使用自动完成(ctrl + 空格)更改调用的方法名称,但不创建新的括号。否则我有双括号:
person.hello()();
并且必须手动删除新括号。
〜谢谢
Is it posible, with eclipse, to change the called method name using of auto completion (ctrl + space) but without creating a new brackets. Otherwise I have double brackets:
person.hello()();
and must manually delete new brackets.
~thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将首选项
形式“完成插入”更改为“完成覆盖”。您还可以在内容辅助处于活动状态时切换设置 - 因此,如果您不想更改全局设置,只需在新内容上按住
Ctrl
键的同时按enter
您使用Ctrl-Space
打开的所提供方法列表中的方法。You can change the preference
form "Completion inserts" to "Completion overwrites". You can also toggle the settings while the content assist is active - thus if you do not want to change the global setting just hold down the
Ctrl
key while pressingenter
on the new method on the provided method list which you opened withCtrl-Space
.双击方法名称,按Ctrl+F,在“替换为”字段中填写新的方法名称,单击“替换/查找”进行一一替换或“全部替换”。
Double-click on the method name, hit Ctrl+F, fill in "Replace with" field with new method name, hit "Replace/Find" to do it one by one or "Replace All".