码迷,mamicode.com
首页 > Web开发 > 详细

js中new函数后带括号和不带括号的区别

时间:2019-02-26 13:17:49      阅读:524      评论:0      收藏:0      [点我收藏+]

标签:func   分析   function   UNC   code   parent   png   括号   创建   

用new创建构造函数的实例时,通常情况下new 的构造函数后面需要带括号(譬如:new Parent())。 

有些情况下new的构造函数后带括号和不带括号的情况一致,譬如:

function Parent(){
this.num = 1;
}
console.log(new Parent());//输出Parent对象:{num:1}
console.log(new Parent);//输出Parent对象:{num:1}

1 1 function Parent(){
2 2   this.num = 1;
3 3 }
4 4 console.log(new Parent());//输出Parent对象:{num:1}
5 5 console.log(new Parent);//输出Parent对象:{num:1}

有无括号时函数执行结果图示: 

技术图片

但有些情况下new的构造函数后带括号和不带括号的情况并不一致,譬如:

1 function Parent(){
2   this.num = 1;
3 }
4 console.log(new Parent().num);//1
5 console.log(new Parent.num);//报错

有无括号时函数执行结果图示:

技术图片

结果分析:

从报错信息来看,new Parent.num执行顺序是这样的:先执行Parent.num,此时返回结果为undefined;后执行new,因new后面必须跟构造函数,所以new undefined会报错。
new Parent().num相当于(new Parent()).num,所以结果返回1。
从结果来看,new Parent.num代码相当于new (Parent.num);new Parent().num相当于(new Parent()).num。由此看来 new的构造函数后跟括号优先级会提升。

 

 原文:https://blog.csdn.net/yihanzhi/article/details/80050716 

js中new函数后带括号和不带括号的区别

标签:func   分析   function   UNC   code   parent   png   括号   创建   

原文地址:https://www.cnblogs.com/chunyi/p/10436336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!