JS继承模式

继承发展史
1.传统形式-->原型链
    过多的继承了没用的属性
2.借用构造函数
    不能继承借用构造函数的原型
    每次构造函数都要多走一个函数
3.共享原型
    不能随便改动自己的原型
4.圣杯模式


1.eg:
    Grand.prototype.lastName = "Deng"
    function Grand() {

    }
    var grand = new Grand();
    Fater.prototype = grand;
    function Fater() {
        this.name = 'xuming';
    }
    var father = new Fater();
    Son.prototype = father;
    function Son() {
        this.hobbit = 'smoke';
    }
    var son = new Son();

2.eg:
    function Person(name,age,sex) {
        this.name = name;
        this.age = age;
        this.sex = sex;
    }
    function Student(name,age,sex,tel,grade) {
        Person.call(this,name,age,sex);
        this.tel = tel;
        this.grade = grade;
    }
    var student = new Student('sunny',123,'male',139,2020);

3.eg:
    Father.prototype.lastName = "Deng";
    function Father() {

    }
    function Son() {

    }
    //第一种方法:
    //Son.prototype = Father.prototype
    //var son = new Son();
    //var father = new Father();
    //第二种方法:
    function inherit(Target,Origin) {
        Target.prototype = Origin.prototype;
    }
    inherit(Son,Father);
    var son = new Son();    //必须先继承后用

4.圣杯模式eg:
    function inherit(Target,Origin) {
        function F() {};   //利用一个空的函数作为中间层,进行转换
        F.prototype = Origin.prototype;
        Target.prototype = new F();
        Target.prototype.constuctor = Target;
        Target.prototype.uber = Origin.prototype;  //继承查找(超级继承者/到底继承于谁)
    }
    Father.prototype.lastName = "Deng";
    function Father() {
    }
    function Son() {
    }
    inherit(Son,Father);
    var son = new Son();
    var father = new Father();

    圣杯模式:
    function inherit(Target,Origin) {
        function F() {};   //利用一个空的函数作为中间层,进行转换
        F.prototype = Origin.prototype;
        Target.prototype = new F();
        Target.prototype.constuctor = Target;
        Target.prototype.uber = Origin.prototype;  //继承查找(超级继承者/到底继承于谁)
    }

    //另一种方式:
    var inherit = (function() {
        var F = function() {};
        return function(Target,Origin) {
            F.prototype = Origin.prototype;
            Target.prototype = new F();
            Target.prototype.constuctor = Target;
            Target.prototype.uber = Origin.prototype;
        }
    }());

闭包实现封装,属性私有化
    function Deng(name,wife) {
        var preparWife = "xiaozhang";
        this.name = name;
        this.wife = wife;
        this.divorce = function() {
            this.wife = preparWife;
        }
        this.changePrepareWife = function(target) {
            preparWife = target;
        }
        this.sayPraprewife = function() {
            console.log(preparWife);
        }
    }
    var deng = new Deng('deng','xiaoliu');

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值