Reputation: 1252
I used Netbeans and now I will use Intellij 14.3. My problem is that I don't know JAVA shorcutkeys of Intellij. In Netbeans :
for(int i = 0; i<length; i++)
Is there equuivalence of these shortcut on Intellij.
Upvotes: 1
Views: 1933
Reputation: 496
I'm using IntelliJ and a few of your examples are in it (sout
and fori
for sure)
There is also a pretty useful cheat sheet from JetBrains, you could use: https://www.jetbrains.com/idea/docs/IntelliJIDEA_ReferenceCard.pdf
Upvotes: 1