在 Java 中将 boolean
转换为 int
最常用的方法是什么?
What is the most accepted way to convert a boolean
to an int
in Java?
int myInt = myBoolean ? 1 : 0;
^^
PS:真 = 1 假 = 0
PS : true = 1 and false = 0
这篇关于在Java中将布尔值转换为int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!