三元运算符
Posted 我心如铁坚不可摧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三元运算符相关的知识,希望对你有一定的参考价值。
package com.changl.operator;
//三元运算符
public class Demo08 {
public static void main(String[] args) {
// x ? y : z
// if x==true,则结果为y,否则结果为z
int socre = 80;
String type = socre < 60 ?"不及格" : "及格";//必须掌握
System.out.println(type);
}
}
-------------------------------------------------------------------------
及格
以上是关于三元运算符的主要内容,如果未能解决你的问题,请参考以下文章