Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

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.
Source by tutorials.jenkov.com #
 
PREVIOUS NEXT
Tagged: #java #ternary #operator
ADD COMMENT
Topic
Name
2+5 =