在Java中,将布尔值转换为int值的最常用方法是什么?
当前回答
public int boolToInt(boolean b) {
return b ? 1 : 0;
}
简单的
其他回答
如果true -> 1和false -> 0映射是你想要的,你可以这样做:
boolean b = true;
int i = b ? 1 : 0; // assigns 1 to i.
boolean b = ....;
int i = -("false".indexOf("" + b));
int myInt = myBoolean ? 1 : 0;
^^
PS: true = 1, false = 0
public int boolToInt(boolean b) {
return b ? 1 : 0;
}
简单的
int val = b? 1 : 0;
推荐文章
- 到底是什么导致了堆栈溢出错误?
- 为什么Android工作室说“等待调试器”如果我不调试?
- Java:路径vs文件
- ExecutorService,如何等待所有任务完成
- Maven依赖Servlet 3.0 API?
- 如何在IntelliJ IDEA中添加目录到应用程序运行概要文件中的类路径?
- getter和setter是糟糕的设计吗?相互矛盾的建议
- Android room persistent: AppDatabase_Impl不存在
- Java的String[]在Kotlin中等价于什么?
- Intellij IDEA上的System.out.println()快捷方式
- 使用Spring RestTemplate获取JSON对象列表
- Spring JPA选择特定的列
- URLEncoder不能翻译空格字符
- Java中的super()
- Haskell:将Int转换为字符串