xxxxxxxxxx
vartype some_var = var1 > var2 ? true_val : false_val;
xxxxxxxxxx
int val1 = 10;
int val2 = 20;
int max = val1 >= val2 ? val1 : val2;
xxxxxxxxxx
booleanExpression ? expression1 : expression2;
//expression1 if booleanExpression==true
//expression2 if booleanExpression==false
xxxxxxxxxx
Object myObject = booleanExpression ? valueIfTrue : valueIfFalse;
xxxxxxxxxx
// variable= condition ? value if condition is True : value if condition is false
// only ternary operator in java
int max,a=1,b=2;
max= a>b ? a : b;
//will result in max = b
xxxxxxxxxx
The condition part of a ternary operator is followed by a question mark (?).
After the question mark are the two values the ternary operator can return, separated by a colon (:).
The values part consists of two values. The first value is returned if the condition parts evaluates to true.
The second value is returned if the condition part evaluates to false.
xxxxxxxxxx
boolean myConditional = true;
System.out.println(
//will print "myConditional is true"
myConditional ? "myConditional is true" : "myConditional is false"
);