Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ActionScript 3 中以下两个函数定义有什么区别?
f = function(arg) { // body }
和
function f(arg) { // body }
您提供的示例几乎没有实际差异。区别实际上是在编译时。值得注意的是,在第一种情况下,f = function,你可以随时重新定义 f 的值,而在第二种情况下,重新定义 f 会导致编译器错误。
一般的最佳实践是使用第二种。
希望有帮助。