标签: actionscript-3 flex flex3 alert
如何在flex中提醒整数值。我有一个名为total的变量,它是一个整数。
如果我尝试使用
var total:int=myTest.length; Alert.show(total);
它会抛出错误说
1067: Implicit coercion of a value of type int to an unrelated type String.
show方法只接受字符串值。如何提醒此int值?
实际上,我想知道存储在总变量中的值。
答案 0 :(得分:3)
Alert.show(total.toString());
reference