高效的 Eclipse 快捷方式
我目前在 Eclipse 中使用各种键盘快捷键,例如:
Ctrl + Shift + R: Open Resources
Ctrl + F6: Switch Files in Editor
Ctrl + Q, ? To switch to desired window
Ctrl + Alt + R: To Restart My server
Ctrl + O: To view an outline of a class
F12: to go to the editor
还有哪些我可能没有使用的其他高效快捷键?
I currently use a variety of keyboard shortcuts in Eclipse such as:
Ctrl + Shift + R: Open Resources
Ctrl + F6: Switch Files in Editor
Ctrl + Q, ? To switch to desired window
Ctrl + Alt + R: To Restart My server
Ctrl + O: To view an outline of a class
F12: to go to the editor
What are some other productive shortcuts I may not be using?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将打开键盘快捷键列表;-)
This opens the list of keyboard shortcuts ;-)
我最喜欢的是快速访问:Ctrl+3 并开始输入您要查找的任何内容...
My favorite is quick access: Ctrl+3 and start typing anything you are looking for...
以下是我经常使用的热键,我确实认为它们极大地提高了我的工作效率
Alt+/ 使用
Windows→Preferences 中定义的代码模板→Java→Editor→Template
Ctrl + Shift + R 查找任何类型的文件。
Ctrl + Shift + O 组织导入并自动导入缺失的导入
Ctrl + Click 在变量/函数上转到其声明
Ctrl + T 在方法或类上显示整个继承树,例如实现的所有方法一个接口。
Here are my frequently used hot keys and I do think they improve my productivity very much
Alt+/ to use the code templates that are defined in the
Windows→Preferences→Java→Editor→Template
Ctrl + Shift + R to find files of any type.
Ctrl + Shift + O to organize imports and import the missing imports automatically
Ctrl + Click on a variables / functions to go to its declaration
Ctrl + T on a method or class shows the whole inheritance tree, for example all methods which implement an interface.