我有一个在swf开始时加载到父类的子类,如下所示:
var myvar = 'hello';
public function Parent()
{
this.child = new Child();
};
如何从child中检索变量'myvar'?
答案 0 :(得分:1)
Child没有引用父项,因此无法检索myvar。
您可以像这样创建孩子:
public class Child
{
private var parent:Parent;
public Child(parent:Parent)
{
this.parent = parent;
}
...
}
这将允许孩子通过它的父属性访问它的父母,并且能够看到属于父母的所有公共成员。