gpt4 book ai didi

闪光灯, ActionScript 3 : how do you give a the EventListener a function With parameters?

转载 作者:行者123 更新时间:2023-12-02 07:52:06 27 4
gpt4 key购买 nike

我正在尝试将带有参数的函数附加到计时器,但它说“无关类型函数”有什么办法可以解决这个问题吗??

代码示例:

var redoTimer:Timer = new Timer(50);

redoTimer.addEventListener(TimerEvent.TIMER, saySomething("helloo"));
redoTimer.start();

这似乎行不通,但有没有办法传递参数???

谢谢马蒂

最佳答案

你不能真的那样做,最接近的等价物是使用一个小的内联函数来包装你自己的函数:

var redoTimer:Timer = new Timer(50);

redoTimer.addEventListener(TimerEvent.TIMER, function(e:Event):void { saySomething("helloo") } );
redoTimer.start();

关于闪光灯, ActionScript 3 : how do you give a the EventListener a function With parameters?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3128423/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com