如何在eclipse中添加java代码的快捷键
假设我输入“sout”,智能感知应将其扩展为“System.out.println()”。有没有办法添加这样的模板?
Say I type "sout", the intellisense should expand it to "System.out.println()". Is there a way to adding such templates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
该功能在 Eclipse 中称为“代码模板”。您可以使用以下方式添加模板:
两篇好文章:
另外,这个问题:
System.out.println()
是已经映射到 sysout,因此您可以通过先学习一些现有模板来节省时间。The feature is called "code templates" in Eclipse. You can add templates with:
Two good articles:
Also, this SO question:
System.out.println()
is already mapped tosysout
, so you may save time by learning a few of the existing templates first.输入“
Sysout
”,然后输入Ctrl+Space
。它扩展到Type "
Sysout
" and thenCtrl+Space
. It expands to为
System.out.println()
键入syso
和 ctrl + spaceType
syso
and ctrl + space forSystem.out.println()
输入“syso”,然后按 ctrl + space
或
输入“sysout”,然后按 ctrl + space
type "syso" and then press ctrl + space
OR
type "sysout" and then press ctrl + space
这是另一个选项:转到“Windows”>“偏好>爪哇>编辑>内容协助。查看“自动激活”区域,确保选中“启用自动激活”并添加更多字符(如“abcd ....yz,默认为“。”)以在您键入时自动显示内容辅助菜单。
This is one more option: go to Windows > Preference > Java > Editor > Content Assit. Look in "Auto Activation" zone, sure that "Enable auto activation" is checked and add more charactor (like "abcd....yz, default is ".") to auto show content assist menu as your typing.
我已经没有 Eclipse 一年多了,但我相信 Eclipse 称这些为“模板”。在您的设置中查找它们。您可以通过键入缩写并按普通代码完成热键(默认情况下为 ctrl+space)或使用 Tab 键来调用模板。 System.out.println() 的标准 Eclipse 快捷方式是“sysout”,因此“sysout”会执行您想要的操作。
这是另一个 stackoverflow 问题,其中包含更多详细信息:
如何在 Eclipse 中使用“sysout”代码段与选定的文本?
I've been Eclipse-free for over a year now, but I believe Eclipse calls these "Templates". Look in your settings for them. You invoke a template by typing its abbreviation and pressing the normal code completion hotkey (ctrl+space by default) or using the Tab key. The standard eclipse shortcut for System.out.println() is "sysout", so "sysout" would do what you want.
Here's another stackoverflow question that has some more details about it:
How to use the "sysout" snippet in Eclipse with selected text?
步骤1->顶级苹果图标 ->系统偏好设置->键盘->快捷方式>聚光灯->取消选中。
步骤2->Eclipse->一般->键->搜索->内容辅助->
绑定(cmd按钮+空格)->应用并关闭。
Step 1 -> Top apple icon -> System preference -> keyboard -> Shortcut>spotlight -> uncheck.
Step 2 ->Eclipse -> General -> keys -> search -> content Assist ->
Binding (cmd button + space) -> Apply&close.