比较运算符

3.比较运算符 (关系运算符): == >  != <  >= <= instanceof
【典型的代码】
  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 b1=(acct1==acct2);//比较两个Account是否是同一个账户
 boolean b2=(acct1!=acct2);//
posted @ 2019-12-26 20:13  code、sky  阅读(282)  评论(0编辑  收藏  举报