Top => IntelliJ on Windows/Linux
Kata for practicing keyboard shortcuts for common editing operations
Key sequences to practice
- (Ctrl + B) - go to the declaration of the reference where the caret is positioned
- (Ctrl + Alt + B) - show the implementations of the reference where the caret is positioned
Walkthrough of steps with explanations
-
Open the Java source file, MomSender.java.
-
Position the caret on the SendStatus class name.
-
Press (Ctrl + B) to go to the declaration of SendStatus.
-
Open the Java source file, Sender.java.
-
Position the caret on the send() method.
-
Press (Ctrl + Alt + B) to display a list of implementations of the send() method.
-
Choose one from the list to go there.