有没有办法在条件切换中退出案例?
我有处理事件侦听器的代码,并且我需要代码在继续执行之前暂停并等待事件。但是,此代码是在 switch() 语句内运行的。有没有办法做这样的事情来退出案件? 案例(数字):if(值){break;}
顺便说一句,这是在 code.org 中完成的。
I have code which deals with an event listener, and I need the code to pause and wait for the event before continuing execution. However, this code is run inside of a switch() statement. Is there a way to do something like this to exit the case?case(number): if(value){break;}
This is being done in code.org by the way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
中断将允许您继续在函数中进行处理。如果您只想在函数中执行此操作,则只需从开关返回即可。
A break will allow you continue processing in the function. Just returning out of the switch is fine if that's all you want to do in the function.