AS3 with(){} - 有什么方法可以引用 () 中的对象吗?
我可以用保留变量或其他东西来引用我刚才在 with() 中提到的东西吗?还是我必须把整个事情写下来?
with(something){
someFunction(something)
}
在这个例子中它很简单,但有时它真的很长,我想如果可能的话避免它。
Can I refer the thing I just mentioned in with() with a reserved variable or something? Or do I have to write the entire thing out?
with(something){
someFunction(something)
}
In this example it's simple, but sometimes it's really long and I would like to avoid it if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果是 javascript,那么您可以使用 valueOf()。不知道AS3是否支持。
If it was javascript, then you could use valueOf(). I don't know if AS3 supports that.
是的,您可以,请参阅帮助中的 actionscript 参考页面。 adobe.com:
Yes you can, see this actionscript reference page on help.adobe.com: