在 ActionScript 中获取变量名称的字符串?

发布于 2024-10-14 13:14:17 字数 209 浏览 2 评论 0原文

有谁知道一些 ActionScript api 来获取变量名称的字符串,如下所示:

var foo:int;
var variableName:String = getName(foo);
trace(variableName);

控制台需要显示“foo”作为 trace(variableName); 的结果

Does anyone know some ActionScript api to get String of a variable name like following:

var foo:int;
var variableName:String = getName(foo);
trace(variableName);

The console need to show "foo" as the result of trace(variableName);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

相思碎 2024-10-21 13:14:17

你想用这个实现什么目标?

flash.utils.describeType 可以帮助查找对象的任何变量的名称/类型,但我认为它不会为您提供实例名称。我相信编译代码时大部分信息都会丢失,因此在运行时获取它会相当困难。

What are you trying to achieve with this?

flash.utils.describeType can help find the name/types of any variables of an object but I don't think it will give you the instance name. I believe most of that information is lost when you compile the code so getting it at runtime will be rather difficult.

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