What do syso-statements mean in Java?

What does syso-statements mean in Java?

+6
java
source share
4 answers

short for System.out.println();

In eclipse, you can type syso and Ctrl + Space to populate the extension.

+10
source share

Well, this is not a term that is commonly used, so you need to provide some context, but it most likely means system statements.

That is, any statement that uses System.out

+4
source share

The correct answer is actually Nothing . And that doesn't even mean anything for the Eclipse IDE for Java. The real label (actually the template) is sysout , and that means

 System.out.println(); 

Java developers just stick with syso because it is shorter, Eclipse can match it with sysout , and there is no other default template that matches syso so that Eclipse can just take a single match and replace it. You can add new and modify these templates in the Eclipse settings.

+3
source share

Just guess, the System out instruction.

eg

 System.out.println("Statement") 
+2
source share

All Articles