码迷,mamicode.com
首页 > Web开发 > 详细

js对象冒充实现的继承

时间:2015-07-15 16:43:46      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

 //人类
    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的继承

js对象冒充实现的继承

标签:

原文地址:http://www.cnblogs.com/yyq745201/p/4648680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!