【JAVA】Java的boolean 和 int互相转换 ——Java的true、false和1、0之间的相互转化
2021/7/11 14:06:43
本文主要是介绍【JAVA】Java的boolean 和 int互相转换 ——Java的true、false和1、0之间的相互转化,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目录
- 引用
- true、false和1、0转化原理
- 一、Boolean转化为数字——false为 0,true为 1
- 二、数字转化为Boolean——0 为 false; 非 0 为true
- 方法一:
- 方法二:三目语句
引用
其他文章:
【C++演示】编程语言的true、false和1、0之间的相互转化
【C++】C++ true和false代码演示
true、false和1、0转化原理
Boolean转化为数字
false为 0,true为 1
数字转化为Boolean
0 为 false; 非 0 为true
java本身不支持直接强转
一、Boolean转化为数字——false为 0,true为 1
唯一方法:三目语句
int myInt = myBoolean ? 1 : 0;
示例代码:
boolean myBoolean = true; int myInt = myBoolean ? 1 : 0; System.out.println(myInt); //输出1 myBoolean = false; myInt = myBoolean ? 1 : 0; System.out.println(myInt); //输出0
二、数字转化为Boolean——0 为 false; 非 0 为true
方法一:
boolean myBoolean = myInt != 0;
示例代码:
int myInt= 2; boolean myBoolean = myInt!= 0; System.out.println(myBoolean); //输出为true myInt= 0; myBoolean = myInt!= 0; System.out.println(myBoolean); //输出为false
方法二:三目语句
int a = 1; //带转化int整数 boolean result = (a==0)?false:true; //转化语句
示例代码:
int myInt = 2; //被转化int整数 boolean myBoolean = (myInt == 0) ? false : true; //转化语句 System.out.println(myBoolean); //输出为true myInt = 0; //被转化int整数 myBoolean = (myInt == 0) ? false : true; //转化语句 System.out.println(myBoolean); //输出为true大家好,我是[爱做梦的子浩](https://blog.csdn.net/weixin_43124279),我是东北大学大数据实验班大三的小菜鸡,非常向往优秀,羡慕优秀的人,已拿两个暑假offer,欢迎大家找我进行交流
这篇关于【JAVA】Java的boolean 和 int互相转换 ——Java的true、false和1、0之间的相互转化的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南