Answers for "java short if else syntax"

6

java shorthand if

//Clear example with good readabilty
String var = "Text";
String shortHand = (var.equals("Text") ? "Returns this if true" : "Returns this if false");

//Other example that is less readable
int var = 9;
int shortHand = var == 9 ? 1 : var++;

//Pseudo code
// CONDITION ? returns when true : returns when false
Posted by: Guest on June-12-2021
0

how to shorten if else if and else in java

return a == b? "b"
     : a == c? "c"
     : a == d? "d"
     : "x";
Posted by: Guest on March-07-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language