What's the difference?
var A = function () {
this.x = function () {
//do something
};
};
or
var A = function () { };
A.prototype.x = function () {
//do something
};
|
What's the difference?
or
|
|||||
|
|
This is a common misunderstanding. The two given examples are really doing entirely different things. We can take a look at the differences, but let's make a few mental notes about javascript before diving into it:
So here are the snippets in question:
In this case, variable
Something very different is happening in the second snippet. In the first line, variable For clarity, let's take a look at a third snippet. It's almost exactly like the first one (and may be what you meant to ask about):
In this third example, I've simply added the By making yet another small change, we have a fourth interesting case for comparison:
In this fourth case, variable Related questions:
Sidenote: There is not a real memory savings between the snippets in question. The first variable x belongs to the function value, and the second variable x is a member on an object. If you did have an inheritance chain (though our examples do not), the second snippet would potentially make x available to its children. It's really comparing apples to oranges. If, on the other hand, you had two "A"-style objects, both with property x, each object's x would be made available to objects in an inheritance hierarchy via the prototype, regardless of whether they were explicitly assigned to a prototype object. The prototype always provides the access in the javascript system. Javascript isn't a low-level language. It may not be very valuable to think of prototyping as a way to explicitly change the way memory is allocated. |
|||||||||||||||||||||
|
|
As others have said the first version, using "this" results in every instance of the class A having its own independent copy of function method "x". Whereas using "prototype" will mean that each instance of class A will use the same copy of method "x". Here is some code to show this subtle difference:
As others have mentioned, there are various reasons to choose one method or the other. My sample is just meant to clearly demonstrate the difference. |
|||||||||
|
|
In most cases they are essentially the same, but the second version saves memory because there is only one instance of the function instead of a separate function for each object. A reason to use the first form is to access "private members". For example:
Because of javascript's scoping rules, private_var is available to the function assigned to this.x, but not outside the object. |
|||
|
|
|
The ultimate problem with using
versus:
If you think this is not a problem, then it depends on whether you can live without private variables, and whether you are experienced enough to know a leak when you see one. Also, having to put the constructor logic after the method definitions is inconvenient.
versus:
|
||||
|
|
|
The first example changes the interface for that object only. The second example changes the interface for all object of that class. |
|||
|
|
|
Prototype is the template of the class; which applies to all future instances of it. Whereas this is the particular instance of the object. |
|||
|
|
|
I believe that @Matthew Crumley is right. They are functionally, if not structurally, equivalent. If you use Firebug to look at the objects that are created using
EDIT Didn't mean to imply that the scope of the variable was private, I was just trying to illustrate how I define my classes in javascript. Variable name has been changed to reflect this. |
|||||||||||
|