Internals of Java Virtual Machine are explained very clearly in the below blog by James Blooms.
Internals of JVM by James Blooms
|
Description
|
Shortcut
|
|
Delete Line
|
CTRL + D
|
|
Copy Line
|
CTRL + ALT + Down Arrow
|
|
Add method level, class level, member level Comments
|
SHIFT + ALT + J
|
|
Format Java Source code
|
CTRL + SHIFT + F
|
|
Make line commented
|
CTRL + /
|
|
Make multiple lines [block] commented
|
CTRL + SHIFT + /
|
|
Search selected similar word within the source document
|
CTRL + K
|
|
Select line from beginning to end
|
SHIFT + End key
|
|
Select line from end to beginning
|
SHIFT + Home key
|
|
Select Word by word in same line
|
CTRL + SHIFT + Right Arrow
|
|
Move line above
|
ALT + Up Arrow
|
|
Move line below
|
ALT + Down Arrow
|
Consider Below points before choosing List concrete implementations for your use case: ArrayList is a linear data structure and re-s...