In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces Eclipse commonly used shortcut keys have what knowledge, detailed and easy to understand, simple and fast operation, has a certain reference value, I believe that we read this Eclipse commonly used shortcut keys which articles will be harvested, let's take a look at it.
Shortcuts related to editing
Eclipse has the following editing shortcuts.
1.【ALT+/】
This shortcut key is a good helper for users to edit. It can provide users with content assistance. Don't worry about remembering all the names of methods and attributes. When you can't remember all the names of classes, methods and attributes, experience the benefits brought by ALT+/shortcut key.
2.【Ctrl+O】
Displays an outline of methods and attributes in a class, quickly locates methods and attributes of a class, and is useful when looking for bugs.
3.【Ctrl+/】
Quick comment, can quickly add comments or uncomment for the cursor line or selected line, in debugging may always need to comment something or uncomment, now OK, do not need to repeat comments on each line.
4.【Ctrl+D】
Delete the current line, which is one of my favorites. You don't have to press delete so many times to delete a line.
5.【Ctrl+M】
Maximize and restore windows. When users operate in windows, they always feel that the current window is small (especially when writing code). Now, try the Ctrl+M shortcut key.
View and locate shortcuts
In the program, quickly locate the location of the code, quickly find the location of the Bug, is very difficult, Eclipse provides a powerful search function, you can use the following shortcut keys to help complete the work of locating.
1.【Ctrl+K】、【Ctrl++Shift+K】
Quickly look up and down the selection, eliminating the need to click the Find dialog box with the mouse.
2.【Ctrl+Shift+T】
Find Java class files in the Workspace build path, don't fret about missing classes, and use "*,""? "etc. Wildcards.
3.【Ctrl+Shift+R】
Corresponding to Ctrl+Shift+T, find all files (including Java files) in Workspace, or use wildcards.
4.【Ctrl+Shift+G】
Find references to classes, methods, and attributes. This is a very useful shortcut key, for example, to modify the code that references a method, you can use the Ctrl+Shift+G shortcut key to quickly locate all the locations that reference this method.
5.【Ctrl+Shift+O】
Quickly generate import, when copying a program from the Internet, do not know how to import into the called class, try the Ctrl+Shift+O shortcut key, there will be surprises.
6.【Ctrl+Shift+F】
Format code, writing standard code is a compulsory course for every programmer. When you see a certain code that is extremely unpleasant to the eye, press Ctrl+Shift+F to format this code after selecting it. If you do not select the code, format the current file (Java file) by default.
7.【ALT+Shift+W】
Find the path in the project where the current file is located. This shortcut key can be used to quickly locate the browser view. This shortcut key is useful if you want to find the package where a file is located (especially in larger projects).
8.【Ctrl+L】
Navigate to a line in the current editor, which also works for non-Java files.
9.【Alt+←】、【Alt+→】
Backward history and forward history are very useful when tracking code. Users may find several related places, but they may not remember clearly. You can locate the order of search through these two shortcut keys.
10.【F3】
Quickly locate a class, method, and property at the cursor position.
11.【F4】
Displays inheritance relationships for classes and opens Class Inheritance View.
Debugging shortcuts
Eclipse has the following shortcuts related to running debugging.
1. Ctrl+Shift+B: Set or cancel a breakpoint on the current line.
2. [F11]: Debug the last executed program.
3. Ctrl+F11: Run the last executed program.
4. [F5]: Trace to method. When the program executes to a certain method, press [F5] to trace to method.
5. [F6]: Single-step execution program.
6. [F7]: After executing the method, return to the next statement that called this method.
7. [F8]: Continue execution until the next breakpoint or program end.
Common Editor Shortcuts
Text editors usually provide shortcuts for editing, and you can edit text in Eclipse using these shortcuts.
1. Ctrl+C: Copy.
2. Ctrl+X: Cut.
3. Ctrl+V: Paste.
4. Ctrl+S: Save the file.
5. Ctrl+Z: Undo.
6. Ctrl+Y: Repeat.
7. Ctrl+F: Find it.
Other shortcut keys
Eclipse also has many shortcuts, can not list one by one, users can find their use through the help documentation, there are also a few commonly used shortcuts are as follows.
1. Ctrl+F6: Switch to the next editor.
2. Ctrl+Shift+F6: Switch to the previous editor.
3. Ctrl+F7: Switch to the next view.
4. Ctrl+Shift+F7: Switch to the previous view.
5. Ctrl+F8: Switch to the next perspective view.
6. Ctrl+Shift+F8: Switch to the previous perspective view.
Summary:
Eclipse shortcut keys are more, you can find the use of all shortcuts through the help document, but it is impossible to master the use of all shortcuts, and it is not necessary. If you spend some time familiar with the shortcuts listed in this section, you will get twice the result with half the effort.
1.edit->contentAssist->addAlt+/code association
Window->NextEditor->addCtrl+Tab Toggle Window
3.Run/DebugToggleLineBreakpoint->addCtrl+`Add or delete breakpoints during debugging
Ctrl+Shift+v->Surroundwithtry/catchBlock
5.Source->GenerateGettersandSetters->Ctrl+Shift+. Add getset method
----------Useful shortcuts-----------
Alt+/code assistant to complete the insertion of some code (but generally conflict with the input method, you can modify the input method hotkeys, you can also temporarily use Alt+/instead)
Ctrl+1: Pause the cursor over a variable and press Ctrl+1 to provide a quick refactoring solution. Select a few lines and press Ctrl+1 to place this code in a block of code such as for, while, if, do, or try.
Double-clicking the left parenthesis (parenthesis, bracket, brace) selects everything within the parenthesis.
Alt+Enter Displays the properties of the currently selected resource (Project,or File, or File)
---------Ctrl Series-------------
Ctrl+K: Hold the cursor over a variable and press Ctrl+K to find the next same variable.
Ctrl+Shift+K: Looks in the opposite direction to Ctrl+K
Ctrl+E: Display the current Editer drop-down list (bold if not displayed)
Ctrl+Shift+E: Display the Manager for all currently open Views (you can select Close, Activate, etc.)
Ctrl+Q Navigate to the last edit
Ctrl+L: Move to a new location.
Ctrl+M Maximizes the current Edit or View(or vice versa)
Ctrl+/comment on current line, press again to cancel comment
Ctrl+T Displays the inheritance structure of the current class.
Ctrl+Shift-T: Open type. If you don't mean to dawdle, forget about opening it via the source tree.
Ctrl+O: Opens a small window similar to Outliner in code
Ctrl+ mouse over: Display source code for classes and methods
Ctrl+H: Open the search window
Ctrl+/(keypad) Collapse all code in the current class
Ctrl+×(keypad) Expands all code in the current class
----------Ctrl+Shift Series----------
Ctrl+Shift+F Format current code
Ctrl+Shift+X: Move the selected text to lower case
Ctrl+Shift+Y: Change the selected text to lowercase
Ctrl+Shift+O: Import import quickly
Ctrl+Shift+R: Open the resource openResource
------------F shortcut key series-------------
F3: Open the file declaring the reference
F4: Open Type Hierarchy
F5: Single Step Jump
F6: Single Step Skip
F7: Step Out
F8: Continue, if there are no breakpoints later, the program will run out
-------------------------------
Ctrl+D: Delete current row
Ctrl+Alt+ DOWN Copy the current line to the next line (Copy Add)
Ctrl+Alt+↑ Copy the current line to the previous line (Copy Add)
Alt+ DOWN The current line interacts with the next line (especially useful, you can save cutting and pasting)
Alt+↑ Current line and top line alternate positions (ditto)
Shift+Enter Insert an empty line next to the current line (the mouse can be anywhere in the current line, not necessarily at the end)
Ctrl+Shift+Enter Insert a blank line in the current line.
---------------------
Alt+← Previous edited page
Alt+→ Next edited page (for the above one, of course)
Ctrl+Shift+S: Save all
Ctrl+W Close the current editor
Ctrl+Shift+F4 Close all open Editers
Ctrl+Shift+G: Search for references in workspace
Ctrl+Shift+P Position the cursor inside the match character (e.g.{})(position from front to back, cursor inside the match character, back to front, vice versa)
Ctrl+J forward incremental search (after pressing Ctrl+J, each letter editor you enter provides quick matching to locate a word, if not, it shows that it has not been found in the stutesline, especially useful when looking up a word, this feature Idea has been available for two years)
Ctrl+Shift+J (same as above, but looking backwards)
About "Eclipse commonly used shortcut keys which" the content of this article is introduced here, thank you for reading! I believe everyone has a certain understanding of the knowledge of "Eclipse commonly used shortcut keys." If you still want to learn more knowledge, please pay attention to the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.