在 ActionScript 中获取变量名称的字符串?
有谁知道一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想用这个实现什么目标?
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.