How much do you know about JavaScript inheritance?

How much do you know about JavaScript inheritance?

Preface

How much do you know about inheritance? What kind of inheritance is the best? Let's learn some knowledge points about inheritance and show you their implementation process, as well as their advantages and disadvantages.

The relationship between constructor, prototype object, and instance object

Understanding their relationship first will help you better understand inheritance

Prototype chain inheritance

Core: Use parent class instance as subclass prototype

Code implementation process:

function Parent(name){
    this.name = name || 'xt',
    this.arr = [1]
}
function Son(age){
    this.age = age
}
Parent.prototype.say = function() { //Define the methods that need to be reused and shared on the parent class prototype console.log('hello');
}
Son.prototype = new Parent()
let s1 = new Son(18)
let s2 = new Son(19)
console.log(s1.say() === s2.say()); //true
console.log(s1.name,s1.age); //xt 18
console.log(s2.name,s2.age); //xt 19
s1.arr.push(2)
console.log(s1.arr,s2.arr); // [ 1, 2 ] [ 1, 2 ]

advantage:

The attributes that an instance can inherit are: the attributes of the instance's constructor, the attributes of the parent class constructor, and the attributes of the parent class prototype. (The new instance does not inherit the properties of the parent class instance!)

shortcoming:

  • The subclass instance shares the reference properties of the parent class constructor, such as the arr property (the properties on the prototype are shared, and if one instance modifies the prototype property, the prototype property of the other instance will also be modified!)
  • Cannot pass parameters to parent class constructor

Borrowing constructor inheritance

Core: Use the parent class's constructor to enhance the child class instance, which is equivalent to copying the parent class's instance attributes to the child class.

Code implementation:

function Parent(name) {
    this.name = name;
    this.arr = [1],
    this.say = function() { console.log('hello') }
}
function Son(name, age) {
    Parent.call(this, name) //Copies the instance properties and methods of the parent class this.age = age
}
let s1 = new Son('小谭', 18)
let s2 = new Son('Xiaoming', 19)
console.log(s1.say === s2.say) //false Methods cannot be reused. Methods are independent, not shared. console.log(s1.name, s1.age); //Xiao Tan 18
console.log(s2.name, s2.age); //Xiaoming19
s1.arr.push(2)
console.log(s1.arr, s2.arr); // [ 1, 2 ] [ 1 ]

advantage:

  • It only inherits the properties of the parent class constructor, not the properties of the parent class prototype.
  • Can inherit multiple constructor properties (call multiple)
  • In the child instance, parameters can be passed to the parent instance.

shortcoming:

  • Can only inherit properties from the parent class constructor.
  • Constructor reuse is not possible. (You need to call it again each time you use it)
  • Each new instance has a copy of the parent class constructor, which is bloated.

Prototypal inheritance

Core: Wrap an object with a function and return the call of this function. This function becomes an instance or object that can add attributes at will.

function Parent(name) {
    this.name = 'xt';
    this.arr = [1]
}
function object(obj){
    function F(){}
    F.prototype = obj;
    return new F();
  }
let s1 = new Parent(object)
s1.name = 'Xiaoming'
s1.arr.push(2)
let s2 = new Parent(object)
console.log(s1.name,s2.name); // Xiaoming xt
console.log(s1.arr, s2.arr); //[ 1, 2 ] [ 1 ]

shortcoming:

  • All instances inherit the properties of the prototype and cannot pass parameters.
  • Reuse is not possible. (New instance attributes are added later)

Parasitic inheritance

Core: Based on prototype inheritance, enhance the object and return the constructor

function Parent(name) {
    this.name = 'xt';
    this.arr = [1]
}
function object(obj){
    function F(){}
    F.prototype = obj;
    return new F();
  }
let Son = new Parent()
function addobject(obj){
    var add = object(obj)
    add.name = 'Xiaobai'
    return add
}
var s1 = addobject(Son)
console.log(s1.name); //Xiaobai

shortcoming:

  • The prototype is not used and cannot be reused.
  • The reference type properties of multiple instances inherited by the prototype chain point to the same thing, which may lead to tampering.

Combined inheritance (combined prototype chain inheritance and borrowed constructor inheritance)

Core: By calling the parent class constructor, the properties of the parent class are inherited and the advantages of parameter passing are retained; then, by using the parent class instance as the subclass prototype, function reuse is achieved.

Code implementation:

function Parent(name) {
    this.name = name;
    this.arr = [1]
}
Parent.prototype.say = function () { console.log('hello') }
function Son(name, age) {
    Parent.call(this, name) // Second time this.age = age
}
Parent.prototype = new Son() // once let s1 = new Son('小谭', 18)
let s2 = new Son('Xiaoming', 19)
console.log(s1.say === s2.say) // true
console.log(s1.name, s1.age); //Xiao Tan 18
console.log(s2.name, s2.age); //Xiaoming19
s1.arr.push(2)
console.log(s1.arr, s2.arr); // [ 1, 2 ] [ 1 ] does not share the reference property of the parent class.

advantage:

  • Advantages of retaining the constructor: When creating a subclass instance, you can pass parameters to the parent class constructor.
  • Advantages of retaining the prototype chain: The methods of the parent class are defined on the prototype object of the parent class, which can achieve method reuse.
  • Reference properties of the parent class are not shared. For example, the arr attribute

shortcoming:

  • Since the parent class constructor is called twice, there will be a redundant parent class instance attribute.

Parasitic Combinatorial Inheritance

Core: Combining borrowed constructors to pass parameters and parasitic patterns to achieve inheritance

function Parent(name){
    this.name = name || 'xt',
    this.arr = [1]
}
function Son(name,age){
    Parent.call(this,name) // core
    this.age = age
}
Parent.prototype.say = function() {  
    console.log('hello');
}
Son.prototype = Object.create(Parent.prototype) // The core creates an intermediate object, and the child class prototype and the parent class prototype are isolated.
Son.prototype.constructor = Son
let p1 = new Parent()

let s1 = new Son("Xiaohong",18)
let s2 = new Son("小黑",19)
console.log(p1.constructor); //[Function: Parent]
console.log(s1.constructor); // [Function: Son]
console.log(s1.say() === s2.say()); //true
console.log(s1.name,s1.age); // Xiaohong 18
console.log(s2.name,s2.age); //Little Black 19
s1.arr.push(2)
console.log(s1.arr,s2.arr); // [ 1, 2 ] [ 1, 2 ]

Parasitic composition inheritance can be regarded as the best inheritance of reference type inheritance

Summarize

This is the end of this article about JS inheritance. For more information about JS inheritance, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Js class construction and inheritance cases
  • An article teaches you JS function inheritance
  • Differences between ES6 inheritance and ES5 inheritance in js
  • A brief talk about JavaScript parasitic composition inheritance
  • JavaScript object-oriented class inheritance case explanation
  • In-depth explanation of the various methods and advantages and disadvantages of JavaScript inheritance

<<:  MYSQL performance analyzer EXPLAIN usage example analysis

>>:  Nexus private server construction principle and tutorial analysis

Recommend

Tutorial on installing mysql under centos7

Recently, I plan to deploy a cloud disk on my hom...

Design theory: people-oriented design concept

<br />When thoughts were divided into East a...

W3C Tutorial (6): W3C CSS Activities

A style sheet describes how a document should be ...

CSS3 implementation example of rotating only the background image 180 degrees

1. Mental Journey When I was writing the cockpit ...

Several solutions for forgetting the MySQL password

Solution 1 Completely uninstall and delete all da...

WeChat applet implements simple chat room

This article shares the specific code of the WeCh...

MySQL 5.7.11 zip installation and configuration method graphic tutorial

1. Download the MySQL 5.7.11 zip installation pac...

Detailed explanation of the command mode in Javascript practice

Table of contents definition structure Examples C...

In-depth explanation of the maximum value of int in MySQL

Introduction I will write about the problem I saw...

Advanced and summary of commonly used sql statements in MySQL database

This article uses examples to describe the common...

Web design reference firefox default style

Although W3C has established some standards for HT...

How to create a swap partition file in Linux

Introduction to Swap Swap (i.e. swap partition) i...

How to solve the 10060 unknow error when Navicat remotely connects to MySQL

Preface: Today I want to remotely connect to MySQ...

MySQL single table query example detailed explanation

1. Prepare data The following operations will be ...