带括号的 eclipse 方法名称
内容在按 Enter 后协助插入带括号的方法名称。我可以禁用这样的插入吗?我希望插入的方法名称不带括号。
Content assist insert method names with parenthesises after pressing enter. Can I disable such inserting. I'd like that method name is inserted without brackets.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个简单的解决方案:
只需定义一个变量,例如
String setVisible; !
现在您可以使用 Eclipse 内容辅助来插入
不带括号的完整变量(方法)。
完成编辑后,只需注释掉该变量或将其删除。
也许您可以找到一张包含所有 jFrame 方法的表格,或者为您自己组装一个表格
There's a simple solution:
Just define a variable such as
String setVisible; !
Now you can use the Eclipse content assist to insert
the full Variable (Method) without brackets.
When you finish editing just comment the variable out or delete it.
Maybe you can find a table with all jFrame Methods or assemble one for your own
否。 Java 内容辅助首选项 有一个选项可以关闭参数,但您仍然会看到括号。
No. the Java content assist preferences have an option to turn off the arguments, but you still get the parenthesis.