//人类 function Person(name) { this.name = name; this.showName = function () { console.log("my name is " + name); } this.eat = function () { console.log("人是铁饭是钢..."); } } //白人 function WhitePerson(name) { this.temp = Person; this.temp(name); delete this.temp; this.color = function () { console.log("我们皮肤是偏白色的"); } } //黑人 function BlackPerson(name) { Person.call(this, name);//这个时候Person中的this指向的是BlackPerson的对象了 this.color = function () { console.log("我们皮肤是偏黑色的"); } } var wPreson = new WhitePerson("tom"); wPreson.showName(); var bPerson = new BlackPerson("john"); bPerson.showName();
以对象冒充的方式来实现js的继承
时间: 2024-09-30 00:38:36