最适合网络开发者的网站
Java 编程语言。初学者课程

尿素

Java Short Hand If...Else (Ternary Operator)


简写 If...Else

There is also a short-hand if else, which is known as the ternary operator because it consists of three operands.

It can be used to replace multiple lines of code with a single line, and is most often used to replace simple if else statements:

Syntax

variable = (condition) ? expressionTrue :  expressionFalse;

Instead of writing:

例子

int time = 20;
if (time < 18) {
  System.out.println("Good day.");
} else {
  System.out.println("Good evening.");
}
亲自尝试 »

You can simply write:

例子

int time = 20;
String result = (time < 18) ? "Good day." : "Good evening.";
System.out.println(result);
亲自尝试 »

通过练习测试自己

锻炼:

Insert the missing parts to complete the following "short hand if...else" statement:

int time = 20;
String result = time < 18  "Good day."  "Good evening.";
System.out.println(result);