vote up 0 vote down star

If I have:

Object._extends = function(Derived, Base)
{
   Derived.prototype = new Base();
   Derived.prototype.constructor = Derived;
   Derived.uber = Derived.prototype;
}


var BASE = function()
{
    this._name = "BASE"
}

var DERIVED = function()
{
    Object._extends(DERIVED, BASE)
    this._age = 3;
}
// Object._extends(DERIVED, BASE) if I write here all is ok!!!

alert(new DERIVED()._name) // undefined!

when I write Object._extends(DERIVED, BASE) into DERIVED function then _name is undefined but if I write the same function out then it is not undefined but why?

flag

70% accept rate
Try Object._extends(this, BASE) – Ghommey Oct 13 at 11:43
I can't with 'this' because I must set prototype property that is a property of function DERIVED – xdevel2000 Oct 13 at 13:01

1 Answer

vote up 0 vote down

When evaluating "new", engine first creates an object and then calls its constructor function, that is, "Object._extends" called in constructor has no effect on already created object.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.