Home

 › 

Articles

 › 

Ternary Operator in Java: What You Need to Know

Ternary operator in Java

Ternary Operator in Java: What You Need to Know

The ternary operator in Java is a versatile and powerful tool that every programmer should have in their toolkit. In this blog post, we dive deep into its functionality, providing you with a comprehensive understanding of how to use it and when to apply it in your coding endeavors.

What is the Ternary Operator?

In Java, the ternary operator is a useful tool for creating better conditionals and control flow while maintaining readability. Using them is an easy way to upgrade a novice’s code, making it more professional and maintainable.

For non-coders, you might recognize it as the classic question mark: ?

Ternary operator in action
Ternary operator in action.

©History-Computer.com

How Do You Use It?

This kind of situation is quite common when programming:

String resultMessage;if (number % 2 == 0) {
    resultMessage = “The number is even.”;
} else {
    resultMessage = “The number is odd.”;
}

There’s nothing inherently wrong with this code, but there is a more concise way to do this in Java: the ternary operator. Here’s how you could use it to rewrite the above snippet:

String resultMessage = (number % 2 == 0) ? “The number is even.” : “The number is odd.”

At first glance, this may seem more complicated, but it’s quite simple. Let’s break it down. The general form of the ternary operator is:

[variable] = [condition] ? [true_expression] : [false_expression]

Essentially, if the condition is true, then you assign the variable to the true expression. Otherwise, the variable is assigned to the false expression. In this case, those “true and false expressions” are strings.

Use Cases

Null Checks

Let’s say you have a piece of code that sets the display name of a user, but it is not guaranteed that a name has been chosen upon logging in. If the chosen name is null, then you want the display name to be “Guest”, and the chosen name otherwise. To accomplish this, you may normally write a code snippet similar to:

String displayName;
if (name == null) {
    displayName = “Guest”;
} else {
    displayName = name;
}

However, as we’ve seen already, you can rewrite that code using a ternary operator:

String displayName = (name == null) ? “Guest” : name;

Boolean Evaluation

After learning about ternary operators, you may be tempted to write code like the following:

boolean isEven = (number % 2 == 0) ? true : false;

Which is, of course, a shortened version of this:

boolean isEven;
if (number % 2 == 0) {
    isEven = true;
} else {
    isEven = false;
}

However, this is unnecessarily verbose and a common mistake for novices. In reality, you can write a much simpler form:

boolean isEven = (number % 2 == 0);

As you can see, ternary operators are unnecessary here. The expression will be evaluated as a boolean, and you can assign the variable to it directly.

Nested Ternary Operators

Sometimes, more complex logic is required, but the conditions are repetitive. For example, imagine you want to assign a grade based on a student’s score:

char grade;
if (score >= 90) {
    grade = ‘A’;
} else if (score >= 80) {
    grade = ‘B’;
} else if (score >= 70) {
    grade = ‘C’;
} else if (score >= 60) {
    grade = ‘D’;
} else {
  grade = ‘F’;
}

A switch statement would likely be a more elegant way of doing this, but for our purposes, let’s see how you could do it using ternary operators. In certain cases, it can be useful to nest them:

char grade = (score >= 90) ? ‘A’ : (score >= 80) ? ‘B’ : (score >= 70) ? ‘C’ : (score >= 60) ? ‘D’ : ‘F’;

For each ternary operator, the true expression is a grade, and the false expression is another ternary operator. With more complex logic, nested ternary operators can become messy and hard to follow, but it can make predictable and repetitive tasks more condensed.

The Difference Between If-Else and Ternary Operators

When choosing between using If-Else statements and ternary operators, there are several factors that come into play, and these go beyond the purpose of your code. As aforementioned, when the logic is repetitive, it is okay to use ternary operators, making the code more condensed.

In other cases, where more complex logic and multiple branches are involved, it is much better to use If-Else statements. However, when you are working within a larger codebase that many people have worked on, it is better to follow code guidelines or precedence.

Of course, you can always use ternary operators and if-else statements in the same class. They get along just fine. For example, the following shows the ternary operator is used to determine the smaller number, and the if-else is used to print out a custom message depending on whether the numbers are equal or not. Can you spot the ternary operator?

Ternary and if-else
Ternary operator and if-else coexist in the same class.

©History-Computer.com

Binary Operators vs. Ternary Operators

Throughout the article, you may have been wondering why it is called the ternary operator. In programming, the subjects of an operator are called “operands”, and binary or ternary refer to the number of these operands, with binary meaning two and ternary meaning three. Most of the operators you work with are binary, such as addition and checking for equivalency or inequivalence. For example, when you have the expression:

5 == 2

The operands are 5 and 2. And for the ternary operator, the condition, true expression, and false expression serve as the three operands.

Wrapping Up

While not always necessary, the ternary operator is a helpful tool for any programmer. Under the right circumstances, it can be used to condense down repetitive decisions in code, and it can even be nested to represent more complex logic.

Ternary Operator in Java: What You Need to Know FAQs (Frequently Asked Questions) 

What is the ternary operator in Java?

The ternary operator in Java is a concise way to write if-else statements. It’s a conditional operator that takes three operands: a condition to check, a result for true, and a result for false.

Why is it called a ternary operator?

It’s called a ternary operator because it takes three operands. Most operators in programming are binary, meaning they take two operands. The ternary operator is unique in that it takes three: a condition, a result for true, and a result for false.

How is the ternary operator used in Java?

The ternary operator is used in Java to simplify if-else statements. It is used like this: [variable] = [condition] ? [true_expression] : [false_expression]. If the condition is true, then the variable is assigned the true expression. If the condition is false, the variable is assigned the false expression.

When should I use the ternary operator in Java?

You should use the ternary operator in Java when you have a simple condition with two possible outcomes. It’s a more concise way of writing if-else statements, making your code more readable and maintainable.

Can ternary operators be nested in Java?

Yes, ternary operators can be nested in Java. This can be useful when dealing with more complex logic that’s still fairly repetitive. However, nested ternary operators can become messy and hard to follow, so they should be used sparingly.

What is the difference between if-else and ternary operators in Java?

Functionally, there is no difference between if-else and ternary operators in Java. They both accomplish the same task, but ternary operators do it in a more condensed way. When choosing which one to use, consider factors like readability, code guidelines, and the complexity of the logic involved.

To top