美文网首页
JS中借用构造函数来实现继承(经典继承)

JS中借用构造函数来实现继承(经典继承)

作者: SmileMylife | 来源:发表于2019-08-06 21:16 被阅读0次

    代码示例:

    function SuperType() {
        this.colors = ["red", "blue", "green"];
    }
    
    function SubType() {
        SuperType().call(this);
    }
    
    var instants1 = new SubType();
    instants1.colors.push("yellow");
    alert(instants1.colors);
    
    var instance2 = new SubType();
    alert(instance2.colors);    //"red,blue,green"
    

    代码中加粗的那一行代码“借调”了超类型的构造函数。通过使用 call()方法(或 apply()方法 也可以),我们实际上是在(未来将要)新创建的 SubType 实例的环境下调用了 SuperType 构造函数。 这样一来,就会在新 SubType 对象上执行 SuperType()函数中定义的所有对象初始化代码。结果, SubType 的每个实例就都会具有自己的 colors 属性的副本了。

    相关文章

      网友评论

          本文标题:JS中借用构造函数来实现继承(经典继承)

          本文链接:https://www.haomeiwen.com/subject/hkdgdctx.html