Flex component之间交互

解决方法:
Flex component之间交互,此时要用as 的setter和getter。

actionscript实体类中,对象属性可以为private。但是此时要用as 的setter和getter。
比如:
……
private var _productName:String;
……
public function get productName():String{
return this._productName;
}
public function set productName(_p:String):void{
this._productName=_p;
}
……
在flex4中,将支持自动生成setter 和getter方法。

你可能感兴趣的:(Flex,actionscript)