Composition, Inheritance, and Aggregation in JavaScript Composition, Inheritance, and Aggregation in JavaScript javascript javascript

Composition, Inheritance, and Aggregation in JavaScript


The language is irrelevant when dealing with composition vs inheritance. If you understand what class is and what an instance of a class is, then you have all you need.

Composition is simply when a class is composed of other classes; or to say it another way, an instance of an object has references to instances of other objects.

Inheritance is when a class inherits methods and properties from another class.

Let's say you have two functionality, A and B. You want to define a third functionality, C, that has some or all of both A and B. You could either make C extend from B and A, in which case C has everything B and A has because C isA B and A, or you can make each instance of C have an instance of A and an instance of B, and invoke items on those functionalities. In the latter case, each instance C in effect wraps an instance of B and an instance of A.

Of course, depending on the language, you might not be able to have a class extend from 2 classes (e.g. Java doesn't support multiple inheritance), but that's a language specific detail that has nothing to do with the concept.

Now, for the language specific details...

I used the word class, but javascript has no notion of Class as such. It has objects, and thats it (other than the simple types). Javascript uses prototypal inheritance, which means it has a way of efficiently defining objects and the methods on those objects (this is the topic for another question; you can search SO as there are already answers.)

So going with our example above, you have A, B, and C.

For inheritance, you would have

// define an object (which can be viewed as a "class")function A(){}// define some functionalityA.prototype.someMethod = function(){}

If you wanted C to extend A, you would do

C.prototype = new A();C.prototype.constructor = A;

Now every instance of C would have the method someMethod, because every instance of C "isA" A.

Javascript doesn't have multiple inheritance* (more on this later), so you can't have C extend both A and B. You can use composition, however, to give it the functionality. Indeed, this is one of the reasons composition is preferred by some over inheritance; there are no limits on combining functionality (but this isn't the only reason).

function C(){   this.a = new A();   this.b = new B();}// someMethod on C invokes the someMethod on B.C.someMethod = function(){    this.a.someMethod()}

So there are your simple examples for both inheritance and composition. However, this is not the end of the story. I said before that Javascript does not support multiple inheritance, and in a sense it doesn't, because you can't base the prototype of an object off the prototypes of multiple objects; i.e. you can't do

C.prototype = new B();C.prototype.constructor = B;C.prototype.constructor = A;

because as soon as you do the third, line, you just undid the the second line. This has implications for the instanceof operator.

However, this doesn't really matter, because just because you can't redefine the constructor of an object twice, you can still add any methods you want to the prototype of an object. So just because you can't do the above example, you can still add anything you want to C.prototype, including all the methods on the prototypes of both A and B.

Many frameworks support this and make it easy. I do a lot of Sproutcore work; with that framework you can do

A = {   method1: function(){}}B = {   method2: function(){}}C = SC.Object.extend(A, B, {   method3: function(){}}

Here I defined functionality in object literals A and B, and then added the functionality of both to C, so every instance of C has methods 1, 2, and 3. In this particular case, the extend method (provided by the framework) does all the heavy lifting of setting up the prototypes of the objects.

EDIT -- In your comments, you bring out a good question, namely "If you use composition, how do you reconcile the scope of the main object against the scope of the objects of which the main object is composed".

There are a bunch of ways. The first is simply to pass arguments. So

C.someMethod = function(){    this.a.someMethod(arg1, arg2...);}

Here you are not messing with scopes, you are simply passing arguments around. This is a simple and very viable approach. (the arguments can come from this or be passed in, whatever...)

Another way to do it would be to use the call (or apply) methods of javascript, which basically allows you to set the scope of a function.

C.someMethod = function(){    this.a.someMethod.call(this, arg1, arg2...);}

to be a bit more clear, the following is equivalent

C.someMethod = function(){    var someMethodOnA = this.a.someMethod;    someMethodOnA.call(this, arg1, arg2...);}

In javascript, functions are object, so you can assign them to variables.

the call invocation here is setting the scope of someMethodOnA to this, which is the instance of C.


... Can someone give me an example using the above code to demonstrate composition and aggregation?

At first glance the provided example does not seem to be the bestchoice in order to demonstrate composition in JavaScript. The prototypeproperty of the Stock constructor function still remains the idealplace for both methods total and list for both do access any stockobject's own properties.

What can be done is decoupling the implementations of these methodsfrom the constructors prototype and providing them back exactly there -yet in an additional form of code reuse - Mixins ...

example:

var Iterable_listAllKeys = (function () {    var        Mixin,        object_keys = Object.keys,        listAllKeys = function () {            return object_keys(this).join(", ");        }    ;    Mixin = function () {        this.list = listAllKeys;    };    return Mixin;}());var Iterable_computeTotal = (function (global) {  var      Mixin,      currencyFlag,      object_keys = global.Object.keys,      parse_float = global.parseFloat,      aggregateNumberValue = function (collector, key) {          collector.value = (              collector.value              + parse_float(collector.target[key], 10)          );          return collector;      },      computeTotal = function () {          return [              currencyFlag,              object_keys(this)                  .reduce(aggregateNumberValue, {value: 0, target: this})                  .value                  .toFixed(2)          ].join(" ");      }    ;    Mixin = function (config) {        currencyFlag = (config && config.currencyFlag) || "";        this.total = computeTotal;    };    return Mixin;}(this));var Stock = (function () {  var      Stock,      object_keys = Object.keys,      createKeyValueForTarget = function (collector, key) {          collector.target[key] = collector.config[key];          return collector;      },      createStock = function (config) { // Factory          return (new Stock(config));      },      isStock = function (type) {          return (type instanceof Stock);      }  ;  Stock = function (config) { // Constructor      var stock = this;      object_keys(config).reduce(createKeyValueForTarget, {          config: config,          target: stock      });      return stock;  };  /**   *  composition:   *  - apply both mixins to the constructor's prototype   *  - by delegating them explicitly via [call].   */  Iterable_listAllKeys.call(Stock.prototype);  Iterable_computeTotal.call(Stock.prototype, {currencyFlag: "$"});  /**   *  [[Stock]] factory module   */  return {      isStock : isStock,      create  : createStock  };}());var stock = Stock.create({MSFT: 25.96, YHOO: 16.13, AMZN: 173.10});/** *  both methods are available due to JavaScript's *  - prototypal delegation automatism that covers inheritance. */console.log(stock.list());console.log(stock.total());console.log(stock);console.dir(stock);

There is a lot of information about composition vs inheritance online, but I haven't found decent examples with JavaScript. ...

I did not find a lot of information about composition in JavaScript online, only in other languages. ...

Maybe the search query was not specific enough but even in 2012searching for "JavaScript Mixin composition" should have led intoa not that bad direction.

... If composition is favored for a lot of situations in OOP, how come most people using JavaScript seem to only use prototypes and inheritance?

Because most of them use, what they got tought and/or what theyare familar with. Maybe there should be more knowledge spreadabout JavaScript as delegation based language too and what canbe achieved with it.

appendix:

This are related threads, recently updated and hopefully helping ...


I think I can show you how to rewrite your code in "object composition" fashion by using plain JavaScript (ES5). I use factory functions instead of constructor functions for creating an object instance, so no new keyword needed. That way, I can favour object augmentation (composition) over classical/pseudo-classical/prototypal inheritance, so no Object.create function is called.

The resulting object is a nice flat-composed object:

/* * Factory function for creating "abstract stock" object.  */var AbstractStock = function (options) {  /**   * Private properties :)   * @see http://javascript.crockford.com/private.html   */  var companyList = [],      priceTotal = 0;  for (var companyName in options) {    if (options.hasOwnProperty(companyName)) {      companyList.push(companyName);      priceTotal = priceTotal + options[companyName];    }  }  return {    /**     * Privileged methods; methods that use private properties by using closure. ;)     * @see http://javascript.crockford.com/private.html     */    getCompanyList: function () {      return companyList;    },    getPriceTotal: function () {      return priceTotal;    },    /*     * Abstract methods     */    list: function () {      throw new Error('list() method not implemented.');    },    total: function () {      throw new Error('total() method not implemented.');    }  };};/* * Factory function for creating "stock" object. * Here, since the stock object is composed from abstract stock * object, you can make use of properties/methods exposed by the  * abstract stock object. */var Stock = compose(AbstractStock, function (options) {  return {    /*     * More concrete methods     */    list: function () {      console.log(this.getCompanyList().toString());    },    total: function () {      console.log('$' + this.getPriceTotal());    }  };});// Create an instance of stock object. No `new`! (!)var portofolio = Stock({MSFT: 25.96, YHOO: 16.13, AMZN: 173.10});portofolio.list(); // MSFT,YHOO,AMZNportofolio.total(); // $215.19/* * No deep level of prototypal (or whatsoever) inheritance hierarchy; * just a flat object inherited directly from the `Object` prototype. * "What could be more object-oriented than that?" –Douglas Crockford */ console.log(portofolio); /* * Here is the magic potion: * Create a composed factory function for creating a composed object. * Factory that creates more abstract object should come first.  */function compose(factory0, factoryN) {  var factories = arguments;  /*   * Note that the `options` passed earlier to the composed factory   * will be passed to each factory when creating object.   */  return function (options) {    // Collect objects after creating them from each factory.    var objects = [].map.call(factories, function(factory) {      return factory(options);    });    // ...and then, compose the objects.    return Object.assign.apply(this, objects);  };};

Fiddle here.