如何将as3函数类型声明与不同的调用相匹配?

发布于 2024-10-07 10:00:04 字数 566 浏览 9 评论 0原文

private function playSound():void 
{ 
_soundChannel = _soundObj.play(); 
_soundChannel.addEventListener(Event.SOUND_COMPLETE, nextTrack);
} 
<s:Button width="35" label=">>" click="nextTrack();"/> 

假设 nextSound() 函数在类型上看起来与 playSound 相同...按钮单击工作正常,但事件侦听器不会调用该函数,因为它发送了该函数不期望的参数。 我可以将 nextTrack 函数更改为 evt:Event,但是按钮发送的参数不足,而且我找不到任何可以输入的内容。我可以创建一个类型化函数来从事件监听器调用非类型化 nextTrack 函数

public function callnextsong(evt:Event):void{
                nextTrack();
            }

,但我觉得可能有一种不太迂回的方法来完成它!

private function playSound():void 
{ 
_soundChannel = _soundObj.play(); 
_soundChannel.addEventListener(Event.SOUND_COMPLETE, nextTrack);
} 
<s:Button width="35" label=">>" click="nextTrack();"/> 

Assuming the nextSound() function looks the same as playSound, typewise... The button click works fine, but the event listener won't call the function because its sending an argument the function isn't expecting.
I can change the nextTrack function to be evt:Event, but then the button is sending not enough arguments, and I can't find anything to type it to that will work. I can make a typed function to call the un-typed nextTrack function from the event listener

public function callnextsong(evt:Event):void{
                nextTrack();
            }

But i feel like there's probably a less circuitous way of accomplishing it!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘紸啶 2024-10-14 10:00:04

使用默认参数:

public function nextTrack(evt:Event = null):void {

无论调用者是否提供参数,都可以调用它。

Use a default parameter:

public function nextTrack(evt:Event = null):void {

It can then be called with or without the caller supplying a parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文