PrefaceHow 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 objectUnderstanding their relationship first will help you better understand inheritance Prototype chain inheritanceCore: 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:
Borrowing constructor inheritanceCore: 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:
shortcoming:
Prototypal inheritanceCore: 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:
Parasitic inheritanceCore: 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:
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:
shortcoming:
Parasitic Combinatorial InheritanceCore: 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 SummarizeThis 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:
|
<<: MYSQL performance analyzer EXPLAIN usage example analysis
>>: Nexus private server construction principle and tutorial analysis
Recently, I plan to deploy a cloud disk on my hom...
<br />When thoughts were divided into East a...
A style sheet describes how a document should be ...
1. Mental Journey When I was writing the cockpit ...
Solution 1 Completely uninstall and delete all da...
This article shares the specific code of the WeCh...
1. Download the MySQL 5.7.11 zip installation pac...
Table of contents definition structure Examples C...
Introduction I will write about the problem I saw...
This article uses examples to describe the common...
Although W3C has established some standards for HT...
Introduction to Swap Swap (i.e. swap partition) i...
Preface: Today I want to remotely connect to MySQ...
1. Prepare data The following operations will be ...
As a front-end novice, I tinkered with the front-e...