Reputation: 86145
What does syso-statements
stand for in Java?
Upvotes: 6
Views: 9082
Reputation: 14085
The correct answer is actually Nothing. And it doesn't even mean anything to the Eclipse IDE for Java. The real shortcut (actually template) is sysout
and it stands for
System.out.println();
Java developers just stick to syso
because it's shorter, Eclipse can match it to sysout
and there is no other default template that matches syso
so that Eclipse can just take the only match and replace it. You can add new and modify those templates in Eclipse preferences.
Upvotes: 3
Reputation: 108977
short for System.out.println();
In eclipse you can type syso and Ctrl + Space to fill out the expansion.
Upvotes: 10
Reputation: 6519
Well, that's not a term that's commonly used, so you need to provide some context, but it most likely means system-out-statements.
That is, any statement that uses System.out
Upvotes: 4
Reputation: 343
Just a guess here, System out statement.
e.g
System.out.println("Statement")
Upvotes: 2