Java基础-运算符之布尔逻辑运算符
2021/6/29 22:20:43
本文主要是介绍Java基础-运算符之布尔逻辑运算符,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
布尔逻辑运算符:返回一个boolean结果
有:! 非、& 与、| 或、^异或 、&&短路与、 || 短路或
短路与:左边为false,右边就不执行
短路或:左边为true,右边就不执行
public static void main(String[] args) { int i = 10; int j= 20; int m = 15; boolean bl1 = i < j; boolean bl2 = i > j; System.out.println(bl1&bl2); System.out.println(bl1|bl2); // 短路与:左边为false,右边就不执行 boolean bl3 = (++i > j) && (++m <j); System.out.println(bl3); System.out.println(i); System.out.println(m); // 短路或:左边为true,右边就不执行 boolean bl4 = (++m <j) || (++i > j) ; System.out.println(bl4); System.out.println(i); System.out.println(m); } }
这篇关于Java基础-运算符之布尔逻辑运算符的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略