百科问答小站 logo
百科问答小站 font logo



JavaScript 中,定义函数时用 var foo = function () {} 和 function foo() 有什么区别? 第1页

  

user avatar   svjoke 网友的相关建议: 
      

这个问题其实非常好,最关键的区别在于JavaScript 函数和变量声明的“提前”(hoist)行为。

the Google style guide 建议我们采用方法一。

简单的说 如果我们使用 匿名函数

       var FUNCTION_NAME = function() { /* FUNCTION_BODY */};      

这种方式, 编译后变量声明FUNCTION_NAME 会“被提前”了,但是他的赋值(也就是FUNCTION_BODY)并不会被提前。

也就是,匿名函数只有在被调用时才被初始化。

如果我们使用

       function FUNCTION_NAME ()  { /* FUNCTION_BODY */};      

这种方式, 编译后函数声明和他的赋值都会被提前。

也就是说函数声明过程在整个程序执行之前的预处理就完成了,所以只要处于同一个作用域,就可以访问到,即使在定义之前调用它也可以。


请先看一个例子

       function hereOrThere() { //function statement   return 'here'; }  alert(hereOrThere()); // alerts 'there'  function hereOrThere() {   return 'there'; }      

我们会发现alert(hereOrThere) 语句执行时会alert('there')!这里的行为其实非常出乎意料,主要原因是JavaScript 函数声明的“提前”行为,简而言之,就是Javascript允许我们在变量和函数被声明之前使用它们,而第二个定义覆盖了第一种定义。换句话说,上述代码编译之后相当于

       function hereOrThere() { //function statement   return 'here'; }  function hereOrThere() {//申明前置了,但因为这里的申明和赋值在一起,所以一起前置   return 'there'; }  alert(hereOrThere()); // alerts 'there'      

强烈推荐阅读下面文章,JavaScript 中对变量和函数声明的“提前(hoist)”


再看下面一个例子:


       var hereOrThere = function() { // function expression   return 'here'; };  alert(hereOrThere()); // alerts 'here'  hereOrThere = function() {   return 'there'; };      

这里就是我们期待的behavior,这段程序编译之后相当于:

       var hereOrThere;//申明前置了  hereOrThere = function() { // function expression   return 'here'; };  alert(hereOrThere()); // alerts 'here'  hereOrThere = function() {   return 'there'; };       


参考

Frequently Misunderstood JavaScript Concepts

The Syntax for Defining a Function is Significant




  

相关话题

  程序员讨厌面试被问一些基础问题么? 
  web前端是不是没有前景了? 
  毕设答辩,老师说node不可能写后台怎么办? 
  西安电信一码通项目此前报道中提到「两天两夜把 1m 图片优化到100kb」,图像压缩技术难度是怎样的? 
  如何看待 TS 团队发起的 「JS 类型标注」提案 Types as Comments? 
  王垠的《谈谈Parser》是在回应 winter 吗? 
  为什么尤大说react的性能不如vue? 
  如何评价 Webkit 推出的并发 JavaScript 提案? 
  如何看待 TS 团队发起的 「JS 类型标注」提案 Types as Comments? 
  如何绕过知乎对 Bookmarklet 跨域添加的 <script> 的限制? 

前一个讨论
女朋友要求我做绝育怎么办?
下一个讨论
以目前显卡科技发展的速度,什么时候能普及可以完美240HZ+运行4K画质大作的显卡?





© 2025-04-03 - tinynew.org. All Rights Reserved.
© 2025-04-03 - tinynew.org. 保留所有权利