标签: actionscript-3
我有一套设定功能
public function set energy(value:int):void
当我尝试使用
energy(10); or this.energy(10)
我收到错误:
Call to a possibly undefined method energy.
班上没有变量声称为能量。有线索吗?
答案 0 :(得分:4)
它是property setter,所以你用它来表示:
this.energy = 10;