Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我经常看到这样的评论块:
// =========================================================== // Methods // ===========================================================
有什么方法可以快速将它们添加到 Eclipse 中?
您可以尝试创建一个代码模板: -> Window-> Preferences-> Java-> Editor-> Templates。
Window
Preferences
Java
Editor
Templates
您可以在 Eclipse 中添加自己的注释模板。我认为您可以在以下情况下执行此操作:Main Menu -> Window -> Preferences -> Java -> Code Style -> Code Templates -> Configure generated code and comments.
Main Menu -> Window -> Preferences -> Java -> Code Style -> Code Templates -> Configure generated code and comments
看看这些说明here和这个答案我认为这正是你所需要的。
Ctrl-/ 切换“//”注释,Ctrl-Shift-/ 切换“/* */”注释。无论如何,至少对于 Java 而言——其他工具可能有不同的快捷方式。
Ctrl-\ 将删除任一评论块,但不会添加评论。