0

这是我实现继承的代码:

<html lang="en">
<head>
    <title>JavaScript Patterns</title>
    <meta charset="utf-8">
</head>
<body>
    <script>
        /* Title: Classical Pattern #5 - A Temporary Constructor (a pattern that should be generally avoided)
         Description: first borrow the constructor and then also set the child's prototype to point to a new instance of the constructor
         */


        /* Basic */
        /*function inherit(C, P) {
         var F = function () {};
         F.prototype = P.prototype;
         C.prototype = new F();
         }*/


        /* Storing the Superclass */
        /*function inherit(C, P) {
         var F = function () {};
         F.prototype = P.prototype;
         C.prototype = new F();
         C.uber = P.prototype;
         }*/


        /* Resetting the Constructor Pointer */
        /*function inherit(C, P) {
         var F = function () {};
         F.prototype = P.prototype;
         C.prototype = new F();
         C.uber = P.prototype;
         C.prototype.constructor = C;
         }*/


        /* in closure */
        var inherit = (function () {
            var F = function () {
            };
            return function (C, P) {
                F.prototype = P.prototype;
                C.prototype = new F();
                C.uber = P.prototype;
                C.prototype.constructor = C;
            }
        }());


        function Parent(name) {
            this.nameParent = name || 'Adam';
            this.parentName = "parent";//this.nameParent;
        }


        // adding functionality to the prototype
        Parent.prototype.say = function () {
            return this.nameParent;
        };



        // child constructor
        function Child(nameChild) {
            console.log("parentprop:" + this.parentName);
        }

        inherit(Child, Parent);


        var kid = new Child();
        console.log(kid.name); // undefined
        console.log(typeof kid.say); // function
        kid.nameParent = 'Patrick';
        console.log(kid.parentName);
        console.log(kid.say()); // Patrick
        console.log(kid.constructor.nameParent); // Child
        console.log(kid.constructor === Parent); // false




        // reference
        // http://shop.oreilly.com/product/9780596806767.do
    </script>
</body>

我需要 Child console.log 显示继承的父类的“父”,但现在,它只显示未定义。

我不知道为什么它不从父属性继承。

在此先感谢您的帮助。

4

1 回答 1

0

因为您从不调用 function Parent,这是设置属性的原因。如果你仔细观察你的inherit函数,你正在使用的prototype属性,P但你从来没有调用过P ——这是一件好事;谁Child应该打电话P

function Child(nameChild) {
    Parent.call(this);
    console.log("parentprop:" + this.parentName);
}

显然,这有一个缺点,即您必须Parent在多个地方列出 - 无论是在您对 的调用中inherit,还是在Child. 您可以通过在子函数上设置父构造函数来缓解这种情况inherit

var inherit = (function () {
    var F = function () {
    };
    return function (C, P) {
        F.prototype = P.prototype;
        C.parent = P;          // <==== The new bit
        C.prototype = new F();
        C.uber = P.prototype;
        C.prototype.constructor = C;
    }
}());

...然后Child变成:

function Child(nameChild) {
    Child.parent.call(this);
    console.log("parentprop:" + this.parentName);
}

如果你有兴趣彻底地做层次结构(支持调用“超级”方法等),你可能想看看我的Lineage工具包。这是一个小型工具包,可以自动执行很多此类工作,但如果您想了解这些工作的工作原理,源代码可能会带来有趣的阅读。那里还有一个wiki 页面,显示了多层、全功能的继承,而不使用 using Lineage(作为将其与 using 进行比较的一种手段Lineage)。

于 2012-05-12T09:38:10.583 回答