Intellij-idea – Intellij IDEA generate for-each/for keyboard shortcut

intellij-idea

Is there a keyboard shortcut generating a foreach and also for loop?

Best Answer

you can use 'live templates' to generate several types of code snippets, loop iteration is done by following -

iter    Iterate (for each..in) 
itin    Iterate (for..in) 
itli    Iterate over a List
itar    Iterate elements of array 
ritar   Iterate elements of array in reverse order 

There are probably many more, just lookup 'Live Templates' in help documentation.