ternary syntax java code example

Example 1: java ternary operator

Object myObject = booleanExpression ? valueIfTrue : valueIfFalse;

Example 2: ternary operator in java

// 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

Example 3: ternary operator java

booleanExpression ? expression1 : expression2;

Example 4: java ternary operator

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.

Tags:

C Example