JavaScriptで子クラスから親メソッドを呼び出す方法は?


156

私は問題の解決策を見つけるために過去数時間を費やしてきましたが、それは絶望的なようです。

基本的に、私は子クラスから親メソッドを呼び出す方法を知る必要があります。これまでに試したすべてのものは、親メソッドを機能させなかったり、上書きしたりすることになります。

次のコードを使用してJavaScriptでOOPを設定しています。

// SET UP OOP
// surrogate constructor (empty function)
function surrogateCtor() {}

function extend(base, sub) {
    // copy the prototype from the base to setup inheritance
    surrogateCtor.prototype = base.prototype;
    sub.prototype = new surrogateCtor();
    sub.prototype.constructor = sub;
}

// parent class
function ParentObject(name) {
    this.name = name;
}
// parent's methods
ParentObject.prototype = {
    myMethod: function(arg) {
        this.name = arg;
    }
}

// child
function ChildObject(name) {
    // call the parent's constructor
    ParentObject.call(this, name);
    this.myMethod = function(arg) {
        // HOW DO I CALL THE PARENT METHOD HERE?
        // do stuff
    }
}

// setup the prototype chain
extend(ParentObject, ChildObject);

最初に親のメソッドを呼び出してから、子クラスのメソッドにさらに何かを追加する必要があります。

ほとんどのOOP言語では、呼び出しと同じくらい簡単ですがparent.myMethod() 、JavaScriptでそれがどのように行われるのか本当に理解できません。

どんな助けでも大歓迎です、ありがとう!

回答:


196

その方法は次のとおりです。 ParentClass.prototype.myMethod();

または、現在のインスタンスのコンテキストで呼び出す場合は、次のようにできます。 ParentClass.prototype.myMethod.call(this)

引数を使用して子クラスから親メソッドを呼び出す 場合も同様です。ParentClass.prototype.myMethod.call(this, arg1, arg2, ..) * ヒント:引数を配列として渡すapply()代わりにcall()を使用します。


7
現在のインスタンスのコンテキストで呼び出す場合は、ParentClass.prototype.myMethod.apply() or コンストラクターの場合と同様に、ParentClass.prototype.myMethod.call() `を実行する必要があります。
JMM 2012

3
引数を付けて呼び出したい場合は、追加するだけで、apply関数またはcall関数(ParentClass.prototype.myMethod.call(this, arg1, arg2, arg3...);)の内部に入ります
Gershom

わかりません。ParentClass.prototype.myMethod.call(this);を呼び出すと ChildObjectのmyMethodから、「Uncaught TypeError:プロパティ 'call' of undefined」というエラーが発生しました。
zhekaus 2016年

@zhekaus、それはmyMethodあなたがあなたのクラスに持っていないことを意味するでしょう。
YemSalat 2016年

2
現在this.myFun = function(){}を使用してオブジェクトメソッドを宣言しているため、ParentClass.prototype.myFun.call(...)を呼び出しても機能しないため、CurrentClass.prototype.myFun.call( ...)。JSは...がらくたです。実際のOOPを使用する必要があります。
Loenix

156

ES6スタイルでは、superキーワードなどの新機能を使用できます。superキーワードは、ES6クラス構文を使用している場合の親クラスコンテキストに関するすべてです。非常に単純な例として、チェックアウト:

class Foo {
    static classMethod() {
        return 'hello';
    }
}

class Bar extends Foo {
    static classMethod() {
        return super.classMethod() + ', too';
    }
}
Bar.classMethod(); // 'hello, too'

また、を使用superして親コンストラクターを呼び出すこともできます。

class Foo {}

class Bar extends Foo {
    constructor(num) {
        let tmp = num * 2; // OK
        this.num = num; // ReferenceError
        super();
        this.num = num; // OK
    }
}

そしてもちろん、これを使用して親クラスのプロパティにアクセスできますsuper.prop。したがって、ES6を使用して、満足してください。


10
@ fsinisi90問題は、親のクラスメソッドに関するものではなく、ES6の時点でsuperキーワードで呼び出すことができない親のインスタンスメソッドに関するものだと思います。
mcmlxxxiii 2017年

静的ではないメソッドでも機能します(Chromeでテスト済み、変換なし、静的キーワードを試していない)
Gianluca Casati

なぜsuper呼び出す必要があるのですか?「古い」JSに同等のものはありますか?
1252748

3
super()は、何よりも先に子クラスコンストラクターで呼び出す必要があります。
user938363

1
@GianlucaCasati:super()静的メソッドでのみ使用できます。コンストラクタで使用したようです。
ZzZombo 2018

5

これを行うにはClass、ES6 の抽象化に限定されません。親コンストラクターのプロトタイプメソッドへのアクセスは、__proto__プロパティを通じて可能です(私は仲間のJSコーダーがそれが減価したと不満を言うだろうと確信しています)。特に、配列のサブクラス化のニーズに対しては)。その__proto__ため、私が知っているすべての主要なJSエンジンでこのプロパティを引き続き使用できますが、ES6はその上にObject.getPrototypeOf()機能を導入しました。抽象化のsuper()ツールは、Classこれの構文上の砂糖です。

したがって、親コンストラクターの名前にアクセスできず、Class抽象化を使用したくない場合でも、次のように実行できます。

function ChildObject(name) {
    // call the parent's constructor
    ParentObject.call(this, name);
    this.myMethod = function(arg) {
    //this.__proto__.__proto__.myMethod.call(this,arg);
    Object.getPrototypeOf(Object.getPrototypeOf(this)).myMethod.call(this,arg);
    }
}

4

多重継承レベルの場合、この関数は他の言語でsuper()メソッドとして使用できます。ここにデモフィドルがあり、いくつかのテストがあり、メソッド内で次のように使用できます:call_base(this, 'method_name', arguments);

それはごく最近のES機能を利用しており、古いブラウザとの互換性は保証されていません。IE11、FF29、CH35でテスト済み。

/**
 * Call super method of the given object and method.
 * This function create a temporary variable called "_call_base_reference",
 * to inspect whole inheritance linage. It will be deleted at the end of inspection.
 *
 * Usage : Inside your method use call_base(this, 'method_name', arguments);
 *
 * @param {object} object The owner object of the method and inheritance linage
 * @param {string} method The name of the super method to find.
 * @param {array} args The calls arguments, basically use the "arguments" special variable.
 * @returns {*} The data returned from the super method.
 */
function call_base(object, method, args) {
    // We get base object, first time it will be passed object,
    // but in case of multiple inheritance, it will be instance of parent objects.
    var base = object.hasOwnProperty('_call_base_reference') ? object._call_base_reference : object,
    // We get matching method, from current object,
    // this is a reference to define super method.
            object_current_method = base[method],
    // Temp object wo receive method definition.
            descriptor = null,
    // We define super function after founding current position.
            is_super = false,
    // Contain output data.
            output = null;
    while (base !== undefined) {
        // Get method info
        descriptor = Object.getOwnPropertyDescriptor(base, method);
        if (descriptor !== undefined) {
            // We search for current object method to define inherited part of chain.
            if (descriptor.value === object_current_method) {
                // Further loops will be considered as inherited function.
                is_super = true;
            }
            // We already have found current object method.
            else if (is_super === true) {
                // We need to pass original object to apply() as first argument,
                // this allow to keep original instance definition along all method
                // inheritance. But we also need to save reference to "base" who
                // contain parent class, it will be used into this function startup
                // to begin at the right chain position.
                object._call_base_reference = base;
                // Apply super method.
                output = descriptor.value.apply(object, args);
                // Property have been used into super function if another
                // call_base() is launched. Reference is not useful anymore.
                delete object._call_base_reference;
                // Job is done.
                return output;
            }
        }
        // Iterate to the next parent inherited.
        base = Object.getPrototypeOf(base);
    }
}

2

ダグラス・クロックフォードの考えに基づくものはどうですか:

    function Shape(){}

    Shape.prototype.name = 'Shape';

    Shape.prototype.toString = function(){
        return this.constructor.parent
            ? this.constructor.parent.toString() + ',' + this.name
            : this.name;
    };


    function TwoDShape(){}

    var F = function(){};

    F.prototype = Shape.prototype;

    TwoDShape.prototype = new F();

    TwoDShape.prototype.constructor = TwoDShape;

    TwoDShape.parent = Shape.prototype;

    TwoDShape.prototype.name = '2D Shape';


    var my = new TwoDShape();

    console.log(my.toString()); ===> Shape,2D Shape

2

ここに、JavaScriptのプロトタイプチェーンを使用して子オブジェクトが親のプロパティとメソッドにアクセスするための優れた方法があり、Internet Explorerと互換性があります。JavaScriptはプロトタイプチェーンでメソッドを検索し、子のプロトタイプチェーンを次のようにします。

子インスタンス->子のプロトタイプ(子メソッドあり)->親のプロトタイプ(親メソッドあり)->オブジェクトプロトタイプ-> null

以下の3つのアスタリスク***に示すように、子メソッドはシャドウされた親メソッドを呼び出すこともできます。

方法は次のとおりです。

//Parent constructor
function ParentConstructor(firstName){
    //add parent properties:
    this.parentProperty = firstName;
}

//add 2 Parent methods:
ParentConstructor.prototype.parentMethod = function(argument){
    console.log(
            "Parent says: argument=" + argument +
            ", parentProperty=" + this.parentProperty +
            ", childProperty=" + this.childProperty
    );
};

ParentConstructor.prototype.commonMethod = function(argument){
    console.log("Hello from Parent! argument=" + argument);
};

//Child constructor    
function ChildConstructor(firstName, lastName){
    //first add parent's properties
    ParentConstructor.call(this, firstName);

    //now add child's properties:
    this.childProperty = lastName;
}

//insert Parent's methods into Child's prototype chain
var rCopyParentProto = Object.create(ParentConstructor.prototype);
rCopyParentProto.constructor = ChildConstructor;
ChildConstructor.prototype = rCopyParentProto;

//add 2 Child methods:
ChildConstructor.prototype.childMethod = function(argument){
    console.log(
            "Child says: argument=" + argument +
            ", parentProperty=" + this.parentProperty +
            ", childProperty=" + this.childProperty
    );
};

ChildConstructor.prototype.commonMethod = function(argument){
    console.log("Hello from Child! argument=" + argument);

    // *** call Parent's version of common method
    ParentConstructor.prototype.commonMethod(argument);
};

//create an instance of Child
var child_1 = new ChildConstructor('Albert', 'Einstein');

//call Child method
child_1.childMethod('do child method');

//call Parent method
child_1.parentMethod('do parent method');

//call common method
child_1.commonMethod('do common method');


1

マルチレベルのプロトタイプルックアップには、はるかに簡単でコンパクトなソリューションがありますが、Proxyサポートが必要です。使用法:SUPER(<instance>).<method>(<args>)たとえば、2つのクラスAB extends Amethodを使用するとしmますSUPER(new B).m()

function SUPER(instance) {
    return new Proxy(instance, {
        get(target, prop) {
            return Object.getPrototypeOf(Object.getPrototypeOf(target))[prop].bind(target);
        }
    });
}

0

あなたが親のプロトタイプで親メソッドを呼び出すことができますが、あなたが使用するために、現在の子インスタンスを渡す必要がありますcallapplyまたはbind方法を。このbindメソッドは新しい関数を作成するので、一度しか呼び出されないことを除いてパフォーマンスを重視する場合はお勧めしません。

別の方法として、元の子メソッドを呼び出しながら、子メソッドを置き換えて親メソッドをインスタンスに配置することができます。

function proxy(context, parent){
  var proto = parent.prototype;
  var list = Object.getOwnPropertyNames(proto);
  
  var child = {};
  for(var i=0; i<list.length; i++){
    var key = list[i];

    // Create only when child have similar method name
    if(context[key] !== proto[key]){
      child[key] = context[key];
      context[key] = function(){
        context.super = proto[key];
        return child[key].apply(context, arguments);
      }
    }
  }
}

// ========= The usage would be like this ==========

class Parent {
  first = "Home";

  constructor(){
    console.log('Parent created');
  }

  add(arg){
    return this.first + ", Parent "+arg;
  }
}

class Child extends Parent{
  constructor(b){
    super();
    proxy(this, Parent);
    console.log('Child created');
  }

  // Comment this to call method from parent only
  add(arg){
    return this.super(arg) + ", Child "+arg;
  }
}

var family = new Child();
console.log(family.add('B'));

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.