JS——Hoisting(提升)
Javascript Hoisting的概念
Javascript Hoisting:In javascript, every variable declaration is hoisted to the top of its declaration context.
hoisting:提升
variable:变量的
declaration:声明
context:上下文
翻译:在Javascript语言中,变量的声明(注意不包含变量初始化)会被提升(置顶)到声明所在的上下文。
也就是说,在变量的作用域内,不管变量在何处声明,都会被提升到作用域的顶部,但是变量初始化的顺序不变。
变量提升部分
示例:
变量提升
内部变量myvar在匿名函数的内最后一行进行变量声明并赋值,但是JS解释器会将变量声明(不包含赋值)提升(Hositing)到匿名函数的第一行(顶部),由于只是声明myvar变量,在执行console.log(myvar)语句时,并未对myvar进行赋值,所以JS输出undefined。
函数提升部分
Javascript Function有两种类型:
1)函数声明(Function Declaration);
// 函数声明
function funDeclaration(type){
return type==="Declaration";
}
2)函数表达式(Function Expression)。
// 函数表达式
var funExpression = function(type){
return type==="Expression";
}
上面的代码看起来很类似,感觉也没什么太大差别。但实际上,Javascript函数上的一个“陷阱”就体现在Javascript两种类型的函数定义上。下面看两段代码(分别标记为代码1段和代码2段):
1)函数声明(Function Declaration);
funDeclaration("Declaration"); //=> true
function funDeclaration(type){
return type==="Declaration";
}
2)函数表达式(Function Expression)。
funExpression("Expression"); //=> error
var funExpression = function(type){
return type==="Expression";
}
用函数声明创建的函数funDeclaration可以在funDeclaration定义之前就进行调用;而用函数表达式创建的funExpression函数不能在funExpression被赋值之前进行调用。
为什么会这样呢?!这就要理解Javascript Function两种类型的区别:
用函数声明创建的函数可以在函数解析后调用(解析时进行等逻辑处理);
而用函数表达式创建的函数是在运行时进行赋值,且要等到表达式赋值完成后才能调用。
这个区别看似微小,但在某些情况下确实是一个难以发现的陷阱。出现这个陷阱的本质原因体现在这两种类型在Javascript function hoisting(函数提升)和运行时机(解析时/运行时)上的差异。
上面两段代码的函数提升可示意为下图:
JS函数提升
代码1段JS函数等同于:
function funDeclaration(type){
return type==="Declaration";
}
funDeclaration("Declaration"); //=> true
代码2段JS函数等同于:
var funExpression;
funExpression("Expression"); //=> error
funExpression = function(type){
return type==="Expression";
}
上述代码在运行时,只定义了funExpression变量,但值为undefined。因此不能在undefined上进行函数调用。此时funExpression赋值语句还没执行到。
一个例子:
代码3:
var sayHello;
console.log(typeof (sayHey)); //=>function
console.log(typeof (sayHo)); //=>undefined
if (true) {
function sayHey() {
console.log("sayHey");
}
sayHello = function sayHo() {
console.log("sayHello");
}
} else {
function sayHey() {
console.log("sayHey2");
}
sayHello = function sayHo() {
console.log("sayHello2");
}
}
sayHey(); // => sayHey2
sayHello(); // => sayHello
分析:
sayHey是用函数声明创建的,在JS解析时JS编译器将函数定义进行了函数提升。
也就是说,在解析JS代码的时候,JS编译器(条件判断不形成新的作用域,两个sayHey函数定义都被提升到条件判断之外)检测到作用域内有两个同名的sayHey定义,第一个定义先被提升,第二个定义接着被提升(第二个定义在第一个定义之下),第二个定义覆盖了第一个sayHey定义,所以sayHey()输出sayHey2。
而sayHello是用函数表达式创建的,其表达式的内容是在JS运行时(不是解析时)才能确定(这里条件判断就起到作用了),所以sayHello表达式执行了第一个函数定义并赋值,则sayHello()输出sayHello。
上面的代码实际上等同于下面代码:
代码4:
var sayHello;
function sayHey() {
console.log("sayHey");
}
function sayHey() {
console.log("sayHey2");
}
console.log(typeof (sayHey)); //=>function
console.log(typeof (sayHo)); //=>undefined
if (true) {
//这里被hoisting...
sayHello = function sayHo() {
console.log("sayHello");
}
} else {
//这里被hoisting...
sayHello = function sayHo() {
console.log("sayHello2");
}
}
sayHey(); // => sayHey2
sayHello(); // => sayHello
总结 :
Javascript 中函数声明和函数表达式是存在区别的,函数声明在JS解析时进行函数提升,因此在同一个作用域内,不管函数声明在哪里定义,该函数都可以进行调用。
而函数表达式的值是在JS运行时确定,并且在表达式赋值完成后,该函数才能调用。这个微小的区别,可能会导致JS代码出现意想不到的bug。
本文内容部分选自:
博客园——JackWang-CUMT:
http://www.cnblogs.com/isaboy/p/javascript_function.html
http://www.cnblogs.com/isaboy/p/javascript_hoisting.html