在Java中,将布尔值转换为int值的最常用方法是什么?


当前回答

int myInt = myBoolean ? 1 : 0;

^^

PS: true = 1, false = 0

其他回答

boolean b = ....; 
int i = -("false".indexOf("" + b));

如果你使用Apache Commons Lang(我认为很多项目都在使用它),你可以这样使用它:

int myInt = BooleanUtils.toInteger(boolean_expression); 

toInteger方法如果boolean_expression为真则返回1,否则返回0

public static int convBool(boolean b)
{
int convBool = 0;
if(b) convBool = 1;
return convBool;
}

然后使用:

convBool(aBool);
int val = b? 1 : 0;

让我们使用boolean .compare(boolean, boolean)。函数的默认行为:如果两个值相等,则返回0,否则返回-1。

public int valueOf(Boolean flag) {
   return Boolean.compare(flag, Boolean.TRUE) + 1;
}

解释:我们知道Boolean.compare的默认返回值在不匹配的情况下是-1,所以+1使返回值为0为False, 1为True