逻辑运算符与三元运算符
作者:互联网
比较运算符
比较运算符,是两个数据之间进行比较的运算,运算结果都是布尔值 true 或者 false 。
public class demo03 { public static void main(String[] args) { System.out.println(1==1); //true System.out.println(1<2); //true System.out.println(3>4); //false System.out.println(3<=4); //true System.out.println(3>=4); //false System.out.println(3!=4); //true } }
相等 == 【两个等号连写才是相等,一个等号代码的是赋值】
注意事项
比较运算符的结果一定是一个boolean值,成立就是true,不成立就是false
如果进行多次判断,不能连着写
数学当中的写法,例如1<x<3
程序当中【不允许】这种写法
标签:逻辑,false,System,运算符,println,三元,true,out 来源: https://www.cnblogs.com/x3449/p/16420862.html