比较运算符
Posted xuezha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了比较运算符相关的知识,希望对你有一定的参考价值。
3.比较运算符 (关系运算符): == > != < >= <= instanceof
【典型的代码】
int i=10;
int j=20;
System.out.println(i==j);
System.out.println(i=j);
int i=10;
int j=20;
System.out.println(i==j);
System.out.println(i=j);
boolean b1=true;
boolean b2=false;
System.out.println(b2==b1);
System.out.println(b2=b1);
【特别说明的】
1.比较运算符的结果是boolean类型
2.> < >= <= :只能使用在数值类型的数据之间
3.== :不仅可以使用在数值类型数据之间 还可以使用在其他引用类型变量之间
Account acct1=new Account(1000);
Account acct1=new Account(2000);
boolean b2=false;
System.out.println(b2==b1);
System.out.println(b2=b1);
【特别说明的】
1.比较运算符的结果是boolean类型
2.> < >= <= :只能使用在数值类型的数据之间
3.== :不仅可以使用在数值类型数据之间 还可以使用在其他引用类型变量之间
Account acct1=new Account(1000);
Account acct1=new Account(2000);
boolean b1=(acct1==acct2);//比较两个Account是否是同一个账户
boolean b2=(acct1!=acct2);//
boolean b2=(acct1!=acct2);//
以上是关于比较运算符的主要内容,如果未能解决你的问题,请参考以下文章