|
|
|
1000 Java Tips ebook
|
|
 

Free "1000 Java Tips" eBook is here! It is huge collection of big and small Java
programming articles and tips. Please take your copy here.
Take your copy of free "Java Technology Screensaver"!. |
|
Ternary operation or operator in Java: what is that?
|
JavaFAQ Home » General Java

By definition an operator that takes three arguments has name a ternary operator. Please notice that the resullt can have different type (not the same as arguments).
Java has one ternary operator - Conditional Operator ?:
Generally it looks like this: condition ? op1 : op2. If condition is false, the statement evaluates as op2; otherwise (true), it evaluates as op1.
Conditional operator ? can be grouped right-to-left. The expression op1?op2:op3?op4:op5?f:op6 can be rewritten for easier understanding like this:
op1?op2:(op3?op4:(op5?op6:op7))
The conditional operator ? was introduced in many programming languages as a shorthand replacement for the if-then-else conditional statement.
Printer Friendly Page
Send to a Friend
Search here again if you need more info!
|
|
|