Several ways to implement inheritance in JavaScript

Several ways to implement inheritance in JavaScript

The mainstream ways of implementing inheritance in non-ES6 code can be divided into:
Structural inheritance, prototype chain inheritance, structural inheritance + prototype chain inheritance combined inheritance, and inheritance methods derived from combined inheritance.

Structural inheritance (implemented with call)

accomplish

function Super(age){
 this.age = age;
 this.say = function(){
 console.log(this.age)
 }
}
function Child(name,age){
 Super.call(this,age)
 this.name = name;
}
var child = new Child("min",23)
console.log(child instanceof Super); // false
console.log(child instanceof Child); // true

advantage

(1) Multiple inheritance can be achieved (call multiple parent class objects)
(2) Parameters can be passed to the parent in the constructor

shortcoming

(1) You can only inherit the properties and methods of the parent class instance, not the properties and methods on the prototype
(2) The instance is not an instance of the parent class, but an instance of the child class

Prototype chain inheritance (implemented with the help of prototype chain)

accomplish

function Super(){
 this.getName = function(){
 console.log(this.name)
 }
}
function Child(name){
	this.name = name;
}
Child.prototype = new Super(); // You can pass the construction parameter here Child.prototype.constructor = Child;
var child = new Child("min");
console.log(child instanceof Super); // true
console.log(child instanceof Child); // true
console.log(child.constructor); // Child

advantage
(1) The parent class prototype properties and methods are accessible to child classes
(2) The instance is an instance of the subclass and also an instance of the parent class

shortcoming
(1) Multiple inheritance cannot be achieved (2) When creating a subclass instance, it is impossible to pass parameters to the parent class constructor

Combined inheritance (construction inheritance + prototype chain inheritance)

accomplish

function Super(age){
 this.age = age;
 this.getAge = function(){
 console.log(this.age);
 }
}
function Child(name,age){
 Super.call(this,age)
 this.name = name;
}
Child.prototype = new Super(1); 
Child.prototype.constructor = Child;
var child = new Child("min",23);
console.log(child instanceof Super); // true
console.log(child instanceof Child); // true
console.log(child.constructor); // Child

advantage
(1) Combining the advantages of construction + prototype chain inheritance

shortcoming
(1) Child.prototype = new Super(); is called once more, which results in some unnecessary properties in the prototype object, such as the age property in the example above.

Parasitic Compositional Inheritance

accomplish

function Super(age){
 this.age = age;
 this.getAge = function(){
 console.log(this.age)
 }
}
function Child(name,age){
 Super.call(this,age)
 this.name = name;
}
(function(){
 function Copy(){}
 Copy.prototype = Super.prototype;
 Child.prototype = new Copy();
})()
Child.prototype.constructor = Child;
var child = new Child("min",23);

Note: Why not use Child.prototype = Super.prototype directly?
Answer: Child.prototype.constructor = Child; The key code, writing Super.prototype above will also change (reference type, pointing to the same address)

advantage
(1) This should be the most perfect solution to implement inheritance. The es6 extends keyword also implements inheritance in this way after the code is converted by babel.

Extra: With (Object.create)

accomplish

function Super(age){
 this.age = age;
 this.getAge = function(){
 console.log(this.age)
 }
}
function Child(name,age){
 Super.call(this,age)
 this.name = name;
}
Child.prototype = Object.create(Super.prototype,{
 constructor:{ // Constructor repairs value: Child
 }
})
var child = new Child("min",23);
console.log(child instanceof Super); // true
console.log(child instanceof Child); // true
console.log(child.constructor); // Child

The above are the details of several ways to implement inheritance in JavaScript. For more information about JavaScript implementation inheritance, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Understanding JavaScript inheritance in one article
  • Summary of 6 common inheritance methods in js
  • 6 inheritance methods of JS advanced ES6
  • Six inheritance methods in JS and their advantages and disadvantages
  • Detailed explanation of native Javascript inheritance methods and their advantages and disadvantages
  • Detailed explanation of 6 ways of js inheritance
  • 6 JavaScript inheritance methods and their advantages and disadvantages (summary)
  • Examples of several common ways to implement inheritance in JS
  • Share several inheritance methods in JavaScript

<<:  Detailed explanation of Nginx regular expressions

>>:  Solution to forgetting MySQL root password in MACOS

Recommend

How to implement responsive layout with CSS

Implementing responsive layout with CSS Responsiv...

Mini Program to Implement Sieve Lottery

This article example shares the specific code of ...

Example of writing mobile H5 to invoke APP (IOS, Android)

iOS 1. URL scheme This solution is basically for ...

Vue realizes the logistics timeline effect

This article example shares the specific code of ...

mysql wildcard (sql advanced filtering)

Table of contents First, let's briefly introd...

jQuery simulates picker to achieve sliding selection effect

This article shares the specific code of jQuery t...

Install Ubuntu 18 without USB drive under Windows 10 using EasyUEFI

1. Check BIOS First check which startup mode your...

Solution - BASH: /HOME/JAVA/JDK1.8.0_221/BIN/JAVA: Insufficient permissions

1) Enter the folder path where the jdk file is st...

Solution to multiple 302 responses in nginx proxy (nginx Follow 302)

Proxying multiple 302s with proxy_intercept_error...

How to modify the default storage engine in MySQL

mysql storage engine: The MySQL server adopts a m...

vue-cli4.5.x quickly builds a project

1. Install vue-cli npm i @vue/cli -g 2. Create a ...

Example of how to enable Brotli compression algorithm for Nginx

Brotli is a new data format that can provide a co...

favico.ico---Website ico icon setting steps

1. Download the successfully generated icon file, ...

Summary of Vue3 combined with TypeScript project development practice

Table of contents Overview 1. Compositon API 1. W...