Ternary Operator

[CG]Nick
63.4K views

Open Source Your Knowledge, Become a Contributor

Technology knowledge has to be shared and made accessible for free. Join the movement.

Create Content

Discover the Ternary Operator

In computer programming, ?: is a ternary operator that is part of the syntax for a basic conditional expression in several programming languages. It is commonly referred to as the conditional operator, inline if (iif), or ternary if.

Ternary Operator

In Java this expression evaluates to:

If foo is selected, assign selected foo to bar. If not, assign baz to bar.

Example:

Object bar = foo.isSelected() ? foo : baz;
Check the options where result equals "foo"

Note that Java, in a manner similar to C#, only evaluates the used expression and will not evaluate the unused expression.

Complete the getNearestEnemy method using a ternary operator
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content