9
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

cocos2d-JSの不思議な_super()

Posted at

cocos2d-jsではcc.Class.extend()を使ってクラスを継承する。このとき、オーバーライドしたメソッド内からthis._super()を呼び出すことで、基底クラスのメソッドを呼び出すことができる。

var MySprite = cc.Sprite.extend({
    ctor: function () {
        this._super();
    },
    setPosition: function (pos) {
        this._super(pos);
    }
});

普通に考えれば、ctorから呼んでる_super()もsetPositionから呼んでいる_super()も同じもののように見えるのに、実はそれぞれ違うメソッドが呼ばれているのでちょっと不思議だ。

実はextendに秘密があって、これは単に2つのオブジェクトをマージするだけではなく、必要に応じてラッパーメソッドを生成するようになっている。

ラッパーメソッドは、this._superの内容を差し換えてから、extendに渡されたメソッドを呼び出すようになっている。

CCClass.js
                } else if (isFunc && override && hasSuperCall) {
                    desc.value = (function (name, fn) {
                        return function () {
                            var tmp = this._super;

                            // Add a new ._super() method that is the same method
                            // but on the super-Class
                            this._super = _super[name];

                            // The method only need to be bound temporarily, so we
                            // remove it when we're done executing
                            var ret = fn.apply(this, arguments);
                            this._super = tmp;

                            return ret;
                        };
                    })(name, prop[name]);
                    Object.defineProperty(prototype, name, desc);
                } else if (isFunc) {
9
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?