Extract Method

Extract code to a new method.

Refactor code as you write it. Use Extract Method ⌥⌘M (macOS) / Ctrl+Alt+M (Windows/Linux) to extract (part of) a method, give the new method a meaningful name and make your code easier to read and understand.


Related Resources

Inline Variable
Inline Variable
Sometimes inlining a variable can make your code more readable.
Introduce Variable
Introduce Variable
Refactor your code and introduce a new variable right when you need it.
Generate Code
Generate Code
Helps you to generate commonly used code constructs.