Skip to main content

JavaScript - An Example for Inheritance

Everyone of us know, Inheritance is a way to acquire properties and methods of another object. In other words it is a way to establish is-a relationship between two objects. The static languages by default provide some easier ways to achieve this. For an example, we have "extend" keyword in Java for extending other object.

JavaScript is protypal inheritance language (class-free) means that objects can inherit properties from other objects. Let's see an example.

Let's create a parent class for Animal

/**
 * Animal - Constructor and parent class for all animals.
 * @param {Object} aType - Type of the animal
 * @param {Object} aName - Name of the animal 
 */

function Animal(aType, aName) {
 this.type = aType;
 this.name = aName;
}

Animal.prototype.eat = function() {
 console.log('All animal will eat');
};

We have to do following steps for extending animal class.

1. Calling super class constructor from child class constructor.
2. Setting up prototype chain.
3. Adding methods to child class.

Let's create child class and extending Animal class by following above steps.

/**
 * Bird - Constructor and child class of Animal.
 * @param {Object} aType - Type of the animal
 * @param {Object} aName - Name of the animal 
 */

function Bird(aType, aName, bType) {
 //Calling super class constructor
 Animal.call(this, aType, aName);
 this.birdType = bType;
}
//Setup the protype chain
Bird.prototype = new Animal();
//Set the constructor attribute to Bird
Bird.prototype.constructor = Bird;

//Add methods to Bird class.
Bird.prototype.fly = function() {
 console.log('I am flying');
};

Let's create an object for Bird and try to access methods and properties of the parent class.

bird = new Bird('Ducks', 'Tundra Swan', 'Ducks');
bird.eat(); //Calling super class method
bird.fly(); //Calling child class method

Final result of the application is given below.


All modern library like jQuery and Ext JS has provided simple utility function for extending other class something like that.

var Pointer = Pointer || {};
/**
 * Simple utility function for extend.
 */
Pointer.extend = function(subClass, superClass) {
 var F = function() {};
 F.prototype = superClass.prototype;
 subClass.prototype = new F(); 
 subClass.prototype.constructor = subClass;
 
 subClass.superclass = superClass.prototype;
 /**
  * The below condition is important for handling
  * extend(Person, Object); //Person - Sample class extending JavaScript Object class.
  */
 if(superClass.prototype.constructor === Object.prototype.constructor) {
  superClass.prototype.constructor = superClass;
 }
};

Simple another example using above extend function.
/**
 * This is parent class constructor
 * @param {Object} name
 */
var Person = function(name) {
 Person.superclass.constructor.call(this, name);
 this.name = name;
};

Pointer.extend(Person, Object); //Person is extending Object class.

Person.prototype.getName = function() {
 return this.name;
};

/**
 * This is child class of the Person.
 * 
 * @param {Object} name
 * @param {Object} profession
 */
var Author = function(name, profession) {
 //Person.call(this, name);
 Author.superclass.constructor.call(this, name);
 this.profession = profession;
};

Pointer.extend(Author, Person);

Author.prototype.getProfession = function() {
 return this.profession;
};

For testing, let's create some objects.

person1 = new Author('Suriya', 'Solution Developer');
person2 = new Person('Hilar');

The result of the above example is should be something like this.


Comments

Popular posts from this blog

Getting key/value pair from JSON object and getting variable name and value from JavaScript object.

 Hi, I had faced one issue like this. I have an JSON object but I don't know any key name but I need to get the all the key and corresponding value from JSON object using client side JavaScript. Suddenly I wondered whether it's possible or not, after that I had done lot of workaround and finally got this solution. See the below example.    function getKeyValueFromJSON() {     var jsonObj =  {a:10,b:20,c:30,d:50} ;     for ( var key in jsonObj) {       alert( "Key: " + key + " value: " + jsonObj[key]);     }  }  In this example I have created the one json array as string, and converted this string into JSON object using eval() function. Using for-each loop I got all the key value from jsonObj, and finally using that key I got the corresponding value.  Finally I got the alert like this,    Key: a value:10    Key: b value:20    Key...

Meteor tutorial - Part II - Building mobile applications

In my previous blog post , I have explained basics of meteor. In this tutorial I am going to add mobile support to the existing meteor application. Installing mobile SDKs Before going to start we need to install IOS and android SDKs (Software development kit). Here I am installing SDKs for iOS. Please keep in mind this is one time process. For installing iOS SDKs, we need to invoke “meteor install-sdk ios”. The same way you can install android SKDs by invoking “meteor install-sdk android” command. Adding mobile platform support I am using already created application called “myapp” and going to add iOS platform support by invoking a command “ meteor add-platform ios ”. We can add android platform by invoking a command  “ meteor add-platform android ”. Running application on mobile emulator Once we add mobile platform then we can run our application by using real mobile device or emulator. I have added IOS platform to myapp already. Now I am going to ru...

Meteor tutorial - Part I

What is Meteor? Meteor is a complete open source platform for building web and mobile application by using JavaScript. It is a combination of NodeJs, MongoDB and client side JavaScript. Installing meteor Meteor supports windows, linux and Mac operating systems. Invoke below command in terminal for installing meteor in mac operating system. Check below link for installing meteor on other operating systems. http://docs.meteor.com/#/basic/quickstart Creating an application The command “meteor create <<app_name>>” is used for creating new meteor application. I have created an app called “myapp” and will see how we can run the application. Running an application “meteor run” command is used for running meteor application. Internally it start a node js server and by default that will listen 3000 port number. Just make sure you are in project directory (myapp) before invoking run command. ' Other useful meteor commands Meteor provides lot of usefu...