ActionScript 3 中函数和函数文字之间的区别?

发布于 11-19 17:58 字数 161 浏览 0 评论 0原文

ActionScript 3 中以下两个函数定义有什么区别?

f = function(arg) {
  // body
}

function f(arg) {
  // body
}

What is the difference between the following two function definitions in ActionScript 3?

f = function(arg) {
  // body
}

and

function f(arg) {
  // body
}

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

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

发布评论

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

评论(1

寂寞美少年2024-11-26 17:58:31

您提供的示例几乎没有实际差异。区别实际上是在编译时。值得注意的是,在第一种情况下,f = function,您可以随时重新定义f的值,而在第二种情况下,重新定义f会导致编译器错误。

一般最佳实践是使用第二种。

希望有帮助。

There is very little practical difference in the example you have provided. The difference is really at compile time. The one worth noting is that that in first case, f = function, you can redefine the value of f at anytime, while in the second case, redefining f would cause a compiler error.

General best practices is to use the second.

Hope that helps.

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