函数创建对象组合使用构造函数模式和原型模式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数创建对象组合使用构造函数模式和原型模式相关的知识,希望对你有一定的参考价值。
构造函数模式用于定义实例属性;原型模式用于定义方法和共享的属性。好处:每个实例都有自己的实例属性副本,同时有共享方法的引用,节省了内存;支持向构造函数传递参数。
function Person(name,age,job){ this.name=name; this.age=age; this.job=job; this.friends=["shelby","Court"]; } Person.prototype={ contructor:Person, sayName:function(){ alert(this.name); } } var person1=new Person("Nicholas",29,"Engineer"); var person2-new Person("Greg",27,"Doctor"); person1.friends.push(‘“Van”); alert(person1.friends);//Shely,Count,Van; alert(person2.friends);//Shely,Count; alert(person1.friends===person2.friedns);//false; alert(person1.sayName===person2.sayName);//true;
似乎是定义引用类型的默认模式。
以上是关于函数创建对象组合使用构造函数模式和原型模式的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript 创建对象 (工厂模式构造函数模式原型模式组合使用构造函数模式与原型模式)
JavaScript之面向对象学习六原型模式创建对象的问题,组合使用构造函数模式和原型模式创建对象