One, eclipse auto-complement enhancement method
In eclipse, from Content Assist, preferences, Editor, Windows---------auto-activation, we can After adding the first subtitles we need to automatically prompt, such as "ABC", you can add all 26 letters to the case
. abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz_
Second, common shortcut keys
(1) Ctrl+space
Description: Content Assistant. Provides hints for methods, variables, parameters, Javadoc, etc.
Should be shipped in a variety of occasions, in short need to prompt the time you can press this shortcut key.
Note: Avoid the switch settings in the Input method conflict with this setting
(2) Ctrl+shift+space
Description: Variable hints
(3) ctrl+/
Description: Add/Remove//comment, in eclipse2.0, remove comment as ctrl+\
(4) ctrl+shift+/
Description: Add/* */Comment
(5) Ctrl+shift+\
Description: Remove/* */Comment
(6) Ctrl+shift+f
Description: Automatic Formatting code
(7) Ctrl+1
Description: Bulk modification of variable names in source code, also available on catch blocks.
(8) Ctril+f6
Description: Interface switch
(9) Ctril+shift+m
Description: Find the package you need
(10) Ctril+shift+o
Description: Automatically introduces the required packages
Eclipse Auto-Complete + common shortcut keys