vote up 5 vote down star
5

In javascript, every object is at the same time instance and class. To do inheritance, you can use any object instance as a prototype.

In python, C++, etc.. there are classes, and instances, as separate concepts. In order to do inheritance, you have to use the base class to create a new class, which can then be used to produce derived instances.

Why did javascript go in this direction (prototype-based object orientation) ? what are the advantages (and disadvantages) of prototype-based OO with respect to traditional, class-based OO ?

thanks

flag

79% accept rate

3 Answers

vote up 15 vote down check

There are about a hundred terminology issues here, mostly built around someone (not you) trying to make their idea sound like The Best.

All object oriented languages need to be able to deal with several concepts:

(1) encapsulation of data along with associated operations on the data, variously known as data members and member functions, or as data and methods, among other things. (2) inheritance, the ability to say that these objects are just like that other set of objects EXCEPT for these changes (3) polymorphism ("many shapes") in which an object decides for itself what methods are to be run, so that you can depend on the language to route your requests correctly.

Now, as far as comparison:

First thing is the whole "class" vs "prototype" question. The idea originally began in Simula, where with a class-based method each class represented a set of objects that shared the same state space (read "possible values") and the same operations, thereby forming an equivalence class. If you look back at Smalltalk, since you can open a class and add methods, this is effectively the same as what you can do in Javascript.

Later OO languages wanted to be able to use static type checking, so we got the notion of a fixed class set at compile time. In the open-class version, you had more flexibility; in the newer version, you had the ability to check some kinds of correctness at the compiler that would otherwise have required testing.

In a "class-based" language, that copying happens at compile time. In a prototype language, the operations are stored in the prototype data structure, which is copied and modified at run time. Abstractly, though, a class is still the equivalence class of all objects that share the same state space and methods. When you add a method to the prototype, you're effectively making an element of a new equivalence class.

Now, why do that? primarily because it makes for a simple, logical, elegant mechanism at run time. now, to create a new object, or to create a new class, you simply have to perform a deep copy, copying all the data and the prototype data structure. You get inheritance and polymorphism more or less for free then: method lookup always consists of asking a dictionary for a method implementation by name.

The reason that ended up in Javascript/ECMA script is basically that when we were getting started with this 10 years ago, we were dealing with much less powerful computers and much less sophisticated browsers. Choosing the prototype-based method meant the interpreter could be very simple while preserving the desirable properties of object orientation.

link|flag
Actually, Simula preceded Smalltalk, and had static type checking as well as inheritance. Simula, in fact, originated the word "Class". – John Saunders May 3 at 2:30
Right, does that paragaph read as if I meant otherwise? Dahl and Nyqvist came up with "class" as the collection of things with the same method signature. – Charlie Martin May 3 at 3:07
Does that change say it better? – Charlie Martin May 3 at 3:08
I'd say JavaScript exactly represents CLOS object model, not even Smalltalk or Simula. CLOS was around long before Smalltalk IIRC. – Thevs May 3 at 8:01
1  
publications.ai.mit.edu/ai-publications/pdf/… – Charlie Martin May 3 at 9:43
show 9 more comments
vote up 1 vote down

You should check out a great book on javascript by douglas crockford. It provides a very good explanation of some of the design decisions taken by javascript creators.

One of the important design aspect of javascript is its prototypal inheritance system. Objects are first class citizens in javascript, so much that regular functions are also implemented as objects ('Function' object to be precise). In my opinion when it was originally designed to run inside a browser, it was meant to be used to create lots of singleton objects. In browser DOM, you find that window, document etc all singleton objects. Also Javascript is loosely typed dynamic language ( as opposed to say python which is strongly typed, dynamic language), as a result a concept of object extension was implemented through the use of 'prototype' property. So I think there are some pros for protytype-based OO as implemented in javascript

  1. Suitable in loosely typed environments, no need to define explicit types
  2. Makes it incredibly easy to implement singleton pattern ( compare javascript and java in this regard, and you'll know what I am talking about )
  3. Provides ways of applying a method of an object in the context of a different object, adding and replacing methods dynamically from an object etc. ( things which are not possible in a strongly typed languages )

Here are some of the cons of prototypal OO

  1. No easy way of implementing private variables. Its possible to implement private vars using crockford's wizardry using closures, but its definitely not as trivial as using private variables in say Java or C#
  2. I dont know how to implement multiple inheritance (for what its worth) in javascript yet
link|flag
vote up 0 vote down

The Wikipedia article on Prototype-based programming may be helpful.

Steve

link|flag

Your Answer

Get an OpenID
or

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