Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any difference between constructor function and prototype object when using inheritance?

Tags:

javascript

Consider the following to JavaScript snippets:

function foo() {
  this.bar = function() { };
}

// or... (if we used an empty constructor function)

foo.prototype.bar = function() { };

What's the difference when I do this:

function baz() {
}

baz.prototype = new foo();

In both cases baz ends up having a member bar but what's the difference? Why would I do this in different places?

like image 517
John Leidegren Avatar asked Oct 20 '11 09:10

John Leidegren


2 Answers

The difference is where in the prototype chain the property is located.

Assuming we have f = new foo(); and b = new baz(). Then we have the following situations:

Definition of foo without using a prototype:

+-----------+     +---------------+
|     f     |     | foo.prototype |
| __proto__-+---->| constructor   |  
| bar       |     |               |
+-----------+     +---------------+

bar is a property of the object itself (f.howOwnProperty('bar') returns true).

If you assign the property to the prototype instead, the situation is:

+-----------+     +---------------+
|     f     |     | foo.prototype |
| __proto__-+---->| constructor   |  
|           |     | bar           |
+-----------+     +---------------+

f does not have its own property bar, but the property is shared with all other foo instances.

Similar for the second snippet, which results either in

+-----------+     +---------------+     +---------------+
|     b     |     | foo instance  |     | foo.prototype |
| __proto__-+---->| __proto__    -+---->| constructor   |  
|           |     | bar           |     |               |
+-----------+     +---------------+     +---------------+

or

+-----------+     +---------------+     +---------------+
|     b     |     | foo instance  |     | foo.prototype |
| __proto__-+---->| __proto__    -+---->| constructor   |  
|           |     |               |     | bar           |
+-----------+     +---------------+     +---------------+

Why do you want to do this?

It's mainly about structure and not wasting memory. You can add functions to an object in a constructor function:

function Foo() {
    this.bar = function() {};
}

but this also means that each instance of Foo has it's own function, that is, f1.bar === f2.bar is false, although both functions are doing the exact same thing.

Using the prototype gives you a clean way to separate properties common to all instances and instance-specific ones.

In the end, it is "just" inheritance which is one concept in software development (like aggregation) and can be used wherever it makes sense. Your second snippet basically means that a baz is-a foo, so a baz instance, in addition to its own properties, has the same properties as a foo instance (inherited).

like image 183
Felix Kling Avatar answered Oct 28 '22 19:10

Felix Kling


One big difference is that if you change properties of the prototype those changes will apply to all instances, including those that already exist, whereas if you change a property that was created in the constructor it will only change it for the instance you change it on.

Regarding what some of the other answers said about setting bar in the constructor resulting in each instance having its own copy of the function: that's true if you have a function expression inside the constructor as shown in the code in the question, but not true if you assign a function reference like this:

function myFunction() {}

function foo() {
   this.bar = myFunction;
}

In that case all instances will have a bar property that refers to the same function - but an individual instance could still have its bar property assigned to something else without affecting other instances.

like image 35
nnnnnn Avatar answered Oct 28 '22 19:10

nnnnnn