博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaScript中函数和构造函数的区别
阅读量:4965 次
发布时间:2019-06-12

本文共 591 字,大约阅读时间需要 1 分钟。

构造函数也是函数

  构造函数和其它函数的唯一区别: 构造函数是通过new操作符来调用的。

  也就是说如果构造函数不用new操作符来调用,那它就是普通函数,反过来说任何函数通过new操作符来调用就可以当做构造函数。

  

function Car(name,color,speed,type){        this.name=name;        this.color=color;        this.speed=speed;        this.type=type;    }    //通过new来调用    var car1=new Car('xixi','red',2,'a');    console.log(car1.name); //xixi    //没用new来调用    var car2=Car('haha','green',3,'b');    console.log(car2.name); //报错    console.log(window.name); // haha

 

  上面的例子表明,如果构造函数没有通过new来调用的话,this对象指向的是window(在浏览器中),和普通函数没有任何区别。。。  

 

 

    

    

转载于:https://www.cnblogs.com/feng-wu/p/6052078.html

你可能感兴趣的文章
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
java语法之final
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>