Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

A case study on the Promotion of javascript variables

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

本篇内容主要讲解"javascript变量提升案例分析",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"javascript变量提升案例分析"吧!

在javascript中,变量提升是指在变量的作用域内,不管变量在何处声明,都会被提升到作用域的顶部,但是变量初始化的顺序不变。变量提升实际的实现方式是JavaScript的变量和函数的声明会在编译阶段放入内存。

本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。

什么是变量提升?

变量提升(Hoisting)是人们对JavaScript执行上下文工作方式的一种认识,并不是官方给出的改变。

从字面上理解,变量提升的意思是变量和函数的声明会在物理层移动到作用域的最前面,虽然这样理解并不准确,效果是相同的。

通俗的来说,变量提升就是,在变量的作用域内,不管变量在何处声明,都会被提升到作用域的顶部,但是变量初始化的顺序不变。

变量提升实际的实现方式是JavaScript的变量和函数的声明会在编译阶段放入内存。这意味着使用者在正式声明一个函数或者变量之前就能够使用它。

要搞清楚变量提升的实现,首先我们要明确以下2点:

javascript代码并不是一行一行往下执行的.

javascript执行分为2个步骤:

编译(词法解释/预解释)

执行

变量提升帮助理解

console.log(a);var a = 'ghostwu';

对于上面的代码这个例子,第一行代码,你可能认为报错, 因为在输出a之前,没有定义a变量, 但是正确的结果是undefined.。根据上面js执行代码的解释,结合实际的代码,当我们碰到 var a = "ghostwu" 定义一个变量的时候, 其实js把这句话看成是2个阶段的事, var a 发生在编译阶段, a = 'ghostwu'发生在执行阶段. 然后 var a会被提升到当前作用域的最前面, a = 'ghostwu'留在原地等待执行阶段,所以看下面的案例:

a = 'ghostwu'; var a; console.log( a ); //上面这段代码经过编译之后,变成下面这样 var a; //被提升到当前作用域的最前面 a = 'ghostwu'; //留在原地,等待执行 console.log( a ); //输出ghostwu console.log( a ); var a = 'ghostwu'; //上面这段代码,经过编译之后,变成下面这样 var a; console.log( a );//输出undefined,而不会报错 a = 'ghostwu';

函数声明提升

在讲解函数声明提升之前,我们先来了解函数的常见的两种定义方式

//函数声明, 形如: function show(){ console.log( '函数声明方式' ); } //函数表达式, 形如: var show = function(){ console.log( '表达式方式' ); }

因为函数表达式和函数的声明,在编译阶段,会产生不同的解释效果,所以函数的声明会被提升,案例见下面代码:

show(); function show(){ console.log( a ); var a = 'ghostwu'; }//函数声明会被提升,所以上面的代码经过编译之后,就变成下面这样 function show(){ //函数声明被提升到 当前作用域的最前面 var a; //var声明被提升到当前作用域的最前面, 注意,他不会提升到函数的外面, 因为当前的作用域是在函数中 console.log( a ); a = 'ghostwu'; } show();//输出undefined

但是函数表达式是不会被提升的,看下面的例子:

show(); //报错,show is not a functionvar show = function(){ console.log( 'ghostwu' );}//对于上面这段表达式代码,经过编译之后:var show;show(); //执行之后就是 undefined(), 所以在表达式定义之前,调用函数报错了show = function(){ console.log( 'ghostwu' ); }

但是看下面的案例:

show(); //你好var show;function show(){console.log( '你好' );}show = function(){ console.log( 'hello' );}

上面的代码为什么会输出"你好",因为当出现同名的函数声明,变量声明的时候, 函数声明会被优先提升,变量声明会被忽略。 所以经过编译之后,就变成:

function show(){ console.log( '你好' );}show(); //你好show = function(){ console.log( 'hello' );}show();//如果这里在调用一次,就是hello, 因为show函数体在执行阶段被重新赋值了

但是如果有同名的函数声明,后面的会覆盖前面的,如下代码:

show(); //how are youvar show;function show(){console.log( 'hello' );} show = function(){console.log( '你好' );}function show(){console.log( 'how are you!' );} //上面的代码经过编译之后,变成如下形式:function show(){ console.log( 'how are you!' );}show(); //how are youshow = function(){ console.log( '你好' );}show(); //如果在这里再执行一次,结果:你好

注:

变量提升只是提升变量的声明,并不会把赋值也提升上来。

正因为有变量提升这回事,所以为了避免变量提升带来的不好的影响,我们最好在定义变量时,使用let而不是var。

到此,相信大家对"javascript变量提升案例分析"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report