如何在 Flex 中提醒整数值?

发布于 2024-08-07 20:22:50 字数 338 浏览 5 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

洒一地阳光 2024-08-14 20:22:50
Alert.show(total.toString());

参考

Alert.show(total.toString());

reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文