摘要:组合使用构造函数模式和原型模式构造函数模式用于定义实例属性,原型模式用于定义方法和共享的属性。创建对象组合使用构造函数模式和原型模式指向构造函数,这里要将其恢复为指向构造函数。另外,这种混合模式,还支持向构造函数传递参数。
组合使用构造函数模式和原型模式
构造函数模式用于定义实例属性,原型模式用于定义方法和共享的属性。
创建自定义类型的最常见方式,就是组合使用构造函数模式和原型模式。
1.创建对象// 组合使用构造函数模式和原型模式 function Person(name, age, job){ this.name = name; this.age = age; this.job = job; this.friend = ["Jenny", "Court"]; } Person.prototype = { constructor: Person, //constructor指向Object构造函数,这里要将其constructor恢复为指向Person构造函数。 Country: "China", showName: function(){ console.log("name = " + this.name); } } var p1 = new Person("Mike", 20, "student"); var p2 = new Person("Tom", 23, "Teacher"); console.log(p1); console.log(p2);
结果,每个实例都会有自己的一份实例属性的副本,但同时又共享着对方法的引用,最大限度地节省了内存。
另外,这种混合模式,还支持向构造函数传递参数。
2.不同之处看上面的代码,你会发现有个不同之处:Person.prototype的constructor属性默认是指向Object构造函数。
从何而知?我们来测试一番。
// 组合使用构造函数模式和原型模式 function Person(name, age, job){ this.name = name; this.age = age; this.job = job; this.friend = ["Jenny", "Court"]; } // 未使用原型模式前,Person构造函数的原型对象的constructor指向Person构造函数本身 console.log("Person.prototype.constructor === Person:"); console.log(Person.prototype.constructor === Person); console.log("-----分割线-----"); Person.prototype = { // constructor: Person, //一般要认为设置,将其constructor恢复为指向Person构造函数,这里为了演示,就没设置。 Country: "China", showName: function(){ console.log("name = " + this.name); } } // 使用原型模式,我们将Person.prototype设置为等于一个以对象字面量形式创建的新对象 // 因此,这里constructor属性也就变成了新对象的constructor属性,指向Object构造函数。 // Person构造函数的原型对象的constructor指向Object构造函数 console.log("Person.prototype ="); console.log(Person.prototype); console.log("-----分割线-----"); console.log("Person.prototype.constructor === Object:"); console.log(Person.prototype.constructor === Object); console.log("-----分割线-----"); console.log("Person.prototype.__proto__ === Object.prototype:"); console.log(Person.prototype.__proto__ === Object.prototype); var p1 = new Person("Mike", 20, "student"); var p2 = new Person("Tom", 23, "Teacher"); console.log(p1); console.log(p2);
未使用原型模式前,Person构造函数的原型对象的constructor指向Person构造函数本身。
使用原型模式,我们将Person.prototype设置为等于一个以对象字面量形式创建的新对象。
因此,这里constructor属性也就变成了新对象的constructor属性,指向Object构造函数。
所以,Person构造函数的原型对象的constructor指向Object构造函数。
console.log("Person.prototype="); console.log(Person.prototype); console.log("-----分割线-----"); console.log("Person.prototype.constructor === Person:"); //true console.log(Person.prototype.constructor === Person); //true console.log("-----分割线-----"); console.log("Person.prototype.__proto__ === Object.prototype:"); //true console.log(Person.prototype.__proto__ === Object.prototype); //true console.log("-----分割线-----"); console.log("Person.__proto__="); console.log(Person.__proto__); console.log("Person.__proto__ === Function.prototype:"); console.log(Person.__proto__ === Function.prototype); //true console.log("-----分割线-----");4.观察p1实例对象涉及到的原型链
console.log("p1.prototype="); console.log(p1.prototype); console.log("-----分割线-----"); console.log("p1.__proto__="); console.log(p1.__proto__); console.log("p1.__proto__ === Person.prototype:"); console.log(p1.__proto__ === Person.prototype); //true console.log("-----分割线-----"); console.log("p1.__proto__.constructor === Person:"); console.log(p1.__proto__.constructor === Person); console.log("-----分割线-----"); console.log("p1.__proto__.__proto__="); console.log(p1.__proto__.__proto__); console.log("p1.__proto__.__proto__ === Object.prototype:"); console.log(p1.__proto__.__proto__ === Object.prototype); //true console.log("-----分割线-----");5.观察下p1.showName属性引用的函数
console.log("p1.showName.prototype="); console.log(p1.showName.prototype); console.log("-----分割线-----"); console.log("p1.showName.prototype.constructor="); console.log(p1.showName.prototype.constructor); console.log("-----分割线-----"); console.log("p1.showName.prototype.__proto__="); console.log(p1.showName.prototype.__proto__); console.log("p1.showName.prototype.__proto__ === Object.prototype:"); console.log(p1.showName.prototype.__proto__ === Object.prototype); //true console.log("-----分割线-----"); console.log("p1.showName.__proto__="); console.log(p1.showName.__proto__); console.log("p1.showName.__proto__ === Function.prototype:"); console.log(p1.showName.__proto__ === Function.prototype); //true console.log("-----分割线-----");原型链图
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/79022.html
摘要:对象是由构造函数创建而成的,所以它的指向原型链图对象的原型链图对象属性引用的匿名函数的原型链图 Object模式 创建一个Object实例,再为其添加属性和方法。 这是创建自定义对象最简单的方式。 1.创建对象 // 创建person对象 var person = new Object(); person.name = Mike; person.age = 20; person.jo...
摘要:创建对象与工厂模式的区别没有显示地创建对象直接将方法和属性付给了对象没有语句构造函数应该始终以一个大写字母开头。创建构造函数的实例,必须使用操作符。 构造函数模式 ECMAScript中的构造函数可用来创建特定类型的对象,像Object和Array这样的原生构造函数。也可以创建自定义的构造函数,从而定义自定义对象类型的属性和方法。 1.创建对象 function Person(name...
摘要:原型模式定义构造函数,在构造函数的原型对象中定义对象的属性和方法,并通过构造函数创建对象。,属性存在于实例对象中,属性不存在于实例对象中分割线操作符会在通过对象能够访问给定属性时返回,无论该属性是存在于实例中还是原型中。 原型模式 定义构造函数,在构造函数的原型对象中定义对象的属性和方法,并通过构造函数创建对象。 1.创建对象 function Person(){}; Person....
摘要:而且在超类型的原型中定义的方法,对子类型而言也是不可见的,结果所有类型都只能使用构造函数模式。在主要考虑对象而不是自定义类型和构造函数的情况下,这个模式也不错。 写在前面 注:这个系列是本人对js知识的一些梳理,其中不少内容来自书籍:Javascript高级程序设计第三版和JavaScript权威指南第六版,感谢它们的作者和译者。有发现什么问题的,欢迎留言指出。 1.原型链 将原型链作...
摘要:工厂模式用函数来封装,以特定接口创建对象的细节。缺点不能知道对象识别的问题对象的类型不知道。复杂的工厂模式定义是将其成员对象的实列化推迟到子类中,子类可以重写父类接口方法以便创建的时候指定自己的对象类型。 工厂模式 用函数来封装,以特定接口创建对象的细节。 1.创建对象 function createPerson(name, age, job){ var o = new Obj...
阅读 1404·2021-11-22 15:24
阅读 2492·2021-10-11 11:06
阅读 2305·2021-10-09 09:45
阅读 2506·2021-09-09 09:33
阅读 603·2019-08-30 15:53
阅读 1414·2019-08-30 12:48
阅读 605·2019-08-29 13:47
阅读 474·2019-08-26 18:27