Answers for "short if condition in java"

4

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

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language