在Java中,将布尔值转换为int值的最常用方法是什么?
当前回答
import org.apache.commons.lang3.BooleanUtils;
boolean x = true;
int y= BooleanUtils.toInteger(x);
其他回答
public static int convBool(boolean b)
{
int convBool = 0;
if(b) convBool = 1;
return convBool;
}
然后使用:
convBool(aBool);
如果你想混淆,可以使用这个:
System.out.println( 1 & Boolean.hashCode( true ) >> 1 ); // 1
System.out.println( 1 & Boolean.hashCode( false ) >> 1 ); // 0
使用三元运算符是最简单、最有效、最易读的方法。我鼓励您使用这个解决方案。
然而,我忍不住要提出一种替代的、做作的、低效的、不可读的解决方案。
int boolToInt(Boolean b) {
return b.compareTo(false);
}
嘿,人们喜欢投票给这么酷的答案!
Edit
顺便说一下,我经常看到从布尔型到int型的转换仅仅是为了比较两个值(通常是在compareTo方法的实现中)。布尔#compareTo是在这些特定情况下的方法。
编辑2
Java 7引入了一个新的实用函数,可以直接处理基本类型:Boolean#compare(感谢shmosel)
int boolToInt(boolean b) {
return Boolean.compare(b, false);
}
public int boolToInt(boolean b) {
return b ? 1 : 0;
}
简单的
import org.apache.commons.lang3.BooleanUtils;
boolean x = true;
int y= BooleanUtils.toInteger(x);
推荐文章
- 如何使用旧版本的Hibernate(~2009)来计算行数?
- Java泛型什么时候需要<?扩展T>而不是<T>,切换有什么缺点吗?
- 如果性能很重要,我应该使用Java的String.format()吗?
- getResourceAsStream返回null
- 如何使用Java中的Scanner类从控制台读取输入?
- 如何添加JTable在JPanel与空布局?
- Statement和PreparedStatement的区别
- 为什么不能在Java中扩展注释?
- 在Java中使用UUID的最重要位的碰撞可能性
- 转换列表的最佳方法:map还是foreach?
- 如何分割逗号分隔的字符串?
- Java字符串—查看字符串是否只包含数字而不包含字母
- Mockito.any()传递带有泛型的接口
- 在IntelliJ 10.5中运行测试时,出现“NoSuchMethodError: org.hamcrest. matcher . descripbemismatch”
- 使用String.split()和多个分隔符