Any menu or hotkey to quickly comment/uncomment code in Eclipse
Any quick way to comment/uncomment java source code in 开发者_如何学运维Eclipse?
Ctrl + Shift + / and Ctrl + Shift + \ toggles C-style comments.
Ctrl + / toggles single-line comments.
For Multiline Comments:
Comment: Ctrl + Shift + / Uncomment: Ctrl + Shift + \
For Single Line Comments:
Comment/Uncomment: Ctrl + /
精彩评论