如果在类中使用了
function get X():Number{
return this.x;
}
function set X(x:Number):Void{
this.x=x;
}
那么在ASV4中就会找到__set__X与__get__Y,如果你看到这样的东西就知道源文件应该是如何写的了吧!!!
function get X():Number{
return this.x;
}
function set X(x:Number):Void{
this.x=x;
}
那么在ASV4中就会找到__set__X与__get__Y,如果你看到这样的东西就知道源文件应该是如何写的了吧!!!
回复Comments
作者:
{commentrecontent}