第一阶段:JAVA 快速入门(第四十课:JAVA条件运算符)

条件运算符(?:)

条件运算符也被称为三元运算符。该运算符有3个操作数,并且需要判断布尔表达式的值。该运算符的主要是决定哪个值应该赋值给变量。

variable x = (expression) ? value if true : value if false

实例

Test.java 文件代码:

public class Test {//公共测试类,与文件名相同
	public static void main(String[] args){//main程序入口
        int score = 80; 
        int x = -100;
        String type =score<60?"不及格":"及格"; 
        int flag = x > 0 ? 1 : (x == 0 ? 0 : -1);
        System.out.println("type= " + type);
        System.out.println("flag= "+ flag);
}}

以上实例编译运行结果如下:

 
发布了40 篇原创文章 · 获赞 5 · 访问量 6843

猜你喜欢

转载自blog.csdn.net/ZGL_cyy/article/details/104086707
今日推荐