如何在 Flex 中提醒整数值?
如何在 flex.h 中提醒整数值?我有一个名为 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 值?
实际上,我想要的是知道total变量中存储的值。
How can I alert an integer value in flex. I have a variable called total which is an integer.
If I try to alert it using
var total:int=myTest.length;
Alert.show(total);
it throws an errors saying that
1067: Implicit coercion of a value of type int to an unrelated type String.
the show method accepts only string values. How can I alert this int value?
Actually, what I want is to know the value stored in the total variable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参考
reference