在 ActionScript 中,为什么从应用程序的不同部分访问时我的静态类成员变量不相同?
我有一个定义了静态成员变量的动作脚本类。
public class A
{
public static var x:int;
}
当我尝试从代码中的不同部分访问它时,我在每个位置都没有得到相同的值。
A.x
我正在加载的不同模块中访问变量,因此它们都位于自己单独的 .swf 文件中。这能是为什么呢?
I have an actionscript class with a static member variable defined.
public class A
{
public static var x:int;
}
When I try to access it from different parts in my code I don't get the same value in each spot.
A.x
I am accessing the variable in different modules that are loaded, so they are all in their own separate .swf file. Could this by why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎是应用程序域问题。主 swf 和模块似乎正在访问它们自己的 A 类副本。您可能应该更改加载模块的方式。
请查看:
http://livedocs.adobe。 com/flash/9.0/ActionScriptLangRefV3/flash/system/LoaderContext.html#applicationDomain
http://livedocs.adobe.com/flash/9.0/ ActionScriptLangRefV3/flash/system/ApplicationDomain.html
Seems like an application domain problem. The main swf and the modules seem to be accessing their own copies of the A class. You should probably change the way you load your modules.
Check this out:
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/LoaderContext.html#applicationDomain
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/ApplicationDomain.html