如何在ActionScript中将String转换为布尔值?

时间:2012-03-20 13:56:20

标签: string flex actionscript boolean type-conversion

我有以下代码:

var bool:String = "true";

没有 if块或switch语句,如何将其转换为布尔对象?<​​/ p>

1 个答案:

答案 0 :(得分:17)

您可以使用:

var boolString:String = "true";
var boolValue:Boolean = boolString == "true"; // true
var boolString2:String = "false";
var boolValue2:Boolean = boolString2 == "true"; // false

修改

以下评论建议使用

var boolValue:Boolean = (boolString == "true") ? true : false;

由于评估在部分中发生,这只会使代码变得复杂:

(boolString == "true")

使用三元运算符相当于:

var tempValue:Boolean = boolString == "true"; // returns true: this is what I suggested
var boolValue:Boolean = tempValue ? true : false; // this is redundant