我想将参数传递给计时器的 timerEvent 函数。
是否可以?
我知道在 c++ 中,我可以使用函数对象,或者只使用 boost::bind。有没有类似 boost::bind 的东西?
我想将参数传递给计时器的 timerEvent 函数。
是否可以?
我知道在 c++ 中,我可以使用函数对象,或者只使用 boost::bind。有没有类似 boost::bind 的东西?
您还可以使用自定义类扩展 Timer 类,例如:
public class DataTimer extends Timer
{
private var _data:Object;
public function DataTimer(delay:Number, repeatCount:int=0)
{
super(delay, repeatCount);
_data = {};
}
public function get data():Object
{
return _data;
}
public function set data(value:Object):void
{
_data = value;
}
}
并在你的回调函数中使用它
var timerObj:DataTimer = event.currentTarget as DataTimer;
trace("data: "+timerObj.data);