why is the shortcut, sout, not working for me in IntelliJ IDE

Answered

I've been doing mooc.fi to learn java but because my computer didn't let me install netbeans I used a plug in within intelliJ. For some reason it doesn't respond when I use the shortcut sout but instead puts SQLOutput

 

epayitonline

0
1 comment

Hi Mona,

The live template for sout is called from inside a method. It can be main method or any other method.

void method1() {
System.out.println(); // 'sout' expanded here
}
0

Please sign in to leave a comment.