码迷,mamicode.com
首页 > 其他好文 > 详细

继承的编码实现

时间:2021-05-24 08:11:12      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   div   style   引入   OLE   ext   问题   变量   extend   

  // 父类
    function Parent() {this.eyes = ‘blue‘}
    Parent.prototype.getEyes = function getEyes() {
        console.log(this.eyes)
    }

    // 子类
    function Chilren() {}

    // 原型链实现类的继承
    function extend(Chilren, Parent) {
        // 避免子类父类引用变量共享问题-引入临时新的构造函数
        function tem(){}
        tem.prototype = Parent.prototype

        Chilren.prototype = new Parent()
        Chilren.prototype.constructor = Chilren
    }

    // 验证
    extend(Chilren, Parent)
    let chilren = new Chilren()
    chilren.getEyes()

 

继承的编码实现

标签:pre   div   style   引入   OLE   ext   问题   变量   extend   

原文地址:https://www.cnblogs.com/angel-/p/14765616.html

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