I cannot find valid syntax for java shorthand.
How should i rewrite in shorthand this thing:
int a = 2, b=4;
if(a < 4) {
System.out.println("a < b");}
else { System.out.println("a >= b");
}
|
|
The "shortest hand" I can imagine is something like:
|
|||
|
|
|
I suspect you're after the conditional operator:
If that's not what you were looking for, please clarify. |
|||
|
|
|
Just for sake of answer, another version of short-hand
|
|||
|
|