面向对象编程(高级程序设计版)(三)
四、组合使用构造函数和原型模式
创建自定义类型的最常见方式,是组合使用构造函数模式与原型模式。构造函数用于定义实例属性,而原型模式用于定义方法和共享的属性。结果,每个实例都会有自己的一份实例属性的副本,但同时又共享这对方法的引用,最大限度地节省了内存。另外,这种混成模式还支持向构造函数传递参数;可谓是几两种模式之长。下面的代码重写了前面的例子:
function Person(name, age, job){ this.name = name; this.age = age; this.job = job; this.friends = ["Shelby","Court"];}Person.prototype = { constructor:Person, sayName:function(){ alert(this.name); }}var p1 = new Person("Nicholas", 29, "Software Engineer");var p2 = new Person("Greg", 29, "Doctor");p1.friends.push("Van");alert(p1.friends); //"Nicholas,Greg,Van"alert(p2.friends); //"Nicholas,Greg"alert(p1.friends == p2.friends); // false;alert(p1.sayName == p2.sayName); // true