欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

java基础:15.三元运算符及小结

时间:2023-08-05
1.+=运算符举例

package base;public class Demo07 { 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); //字符串连接符 + , String System.out.println(a+b); System.out.println(""+a+b); //字符串在前,值为字符串 System.out.println(a+b+""); //字符串在后,值为数字 }}------------1030102030

2、三元运算符举例

package base;public class Demo08 { public static void main(String[] args) { //三元运算符 x ? y : z //如果x==true,则结果为y,否则结果为z int score = 80; String type = score <60 ? "不及格":"及格"; //if语句实现 System.out.println(type); }}---------------及格

3.优先级

()优先级高的表达式放在括号中

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。