码迷,mamicode.com
首页 > 其他好文 > 详细

三元运算符

时间:2021-03-02 11:50:18      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:连接   字符串连接   string类   class   static   void   nbsp   stat   core   

public class demo5 {
public static void main(String[] args) {

int a = 10;
int b = 20;

a+=b;//a = a+b
a-=b;//a = a-b

System.out.println(a);


//字符串连接符
System.out.println(a+b);
System.out.println(""+a+b);//1020,在+运算符两侧有一方出现String类(字符串类)就会把其他操作数都转换为String类型,再进行连接
System.out.println(a+b+"");//30,先进行了a+b,再转换为String类


//三元运算符
//x ? y : z
//如果x==true,则结果为y,否则为z

int score = 80;
String type = score < 60 ? "不及格" : "及格";//必须掌握
System.out.println(type);



}
}
 

三元运算符

标签:连接   字符串连接   string类   class   static   void   nbsp   stat   core   

原文地址:https://www.cnblogs.com/JoeyZhu/p/14461782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!