search
HomeWeb Front-endJS TutorialImplementation principles of ES6 classes and inheritance (code examples)
Implementation principles of ES6 classes and inheritance (code examples)Jan 10, 2019 am 10:47 AM
es6javascriptfront endkindinherit

The content this article brings to you is about the implementation principles (code examples) of ES6 classes and inheritance. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

1. es6 class uses

javascript uses prototypal inheritance. We can achieve class inheritance through the characteristics of prototypes.
es6 is We provide syntactic sugar like object-oriented inheritance.

class Parent {
  constructor(a){
    this.filed1 = a;
  }
  filed2 = 2;
  func1 = function(){}
}

class Child extends Parent {
    constructor(a,b) {
      super(a);
      this.filed3 = b;
    }
  
  filed4 = 1;
  func2 = function(){}
}

Let’s use babel to explore the implementation principles of es6 classes and inheritance.

1. Class implementation

Before conversion:

class Parent {
  constructor(a){
    this.filed1 = a;
  }
  filed2 = 2;
  func1 = function(){}
}

After conversion:

function _classCallCheck(instance, Constructor) {
  if (!(instance instanceof Constructor)) {
    throw new TypeError("Cannot call a class as a function");
  }
}

var Parent = function Parent(a) {
  _classCallCheck(this, Parent);

  this.filed2 = 2;

  this.func1 = function () { };

  this.filed1 = a;
};

It can be seen that the bottom layer of class is still the constructor:

1. Call the _classCallCheck method to determine whether there is a new keyword before the current function call.

If the new keyword is used before the constructor is executed, an empty object will be created inside the constructor, the proptype of the constructor will point to the _proto_ of the empty object, and this will point to the empty object. As above, in _classCallCheck: this instanceof Parent returns true.

If there is no new in front of the constructor, the proptype of the constructor will not appear on the prototype chain of this, and false will be returned.

2. Assign the variables and functions inside the class to this.

3. Execute the internal logic of constuctor.

4.return this (the constructor is done at the end by default).

2. Inheritance implementation

Before conversion:

class Child extends Parent {
    constructor(a,b) {
      super(a);
      this.filed3 = b;
    }
  
  filed4 = 1;
  func2 = function(){}
}

After conversion:

Let’s first look at the internal implementation of Child, and then look at the internal calls How to implement the function:

var Child = function (_Parent) {
  _inherits(Child, _Parent);

  function Child(a, b) {
    _classCallCheck(this, Child);

    var _this = _possibleConstructorReturn(this, (Child.__proto__ || Object.getPrototypeOf(Child)).call(this, a));

    _this.filed4 = 1;

    _this.func2 = function () {};

    _this.filed3 = b;
    return _this;
  }

  return Child;
}(Parent);

1. Call the _inherits function to inherit the proptype of the parent class.

_inherits internal implementation:

function _inherits(subClass, superClass) {
  if (typeof superClass !== "function" && superClass !== null) {
    throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
  }
  subClass.prototype = Object.create(superClass && superClass.prototype, {
    constructor: { value: subClass, enumerable: false, writable: true, configurable: true }
  });
  if (superClass)
    Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
}

(1) Verify the parent constructor.

(2) Typical parasitic inheritance: Create an empty object using the proptype of the parent class constructor and point this object to the proptype of the subclass constructor.

(3) Point the parent constructor to the _proto_ of the child constructor (it is not clear what this step does, and it feels meaningless.)

2. Use a closure The package saves the parent class reference and does the subclass construction logic inside the closure.

3.new check.

4. Use the current this to call the parent class constructor.

var _this = _possibleConstructorReturn(this, (Child.__proto__ || Object.getPrototypeOf(Child)).call(this, a));

Child.__proto__ || Object.getPrototypeOf(Child) is actually the parent constructor (the last operation of _inherits), and then changes its caller to the current this through call and passes parameter. (I feel like you can directly use the Parent passed in as a parameter here)

function _possibleConstructorReturn(self, call) {
  if (!self) {
    throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
  }
  return call && (typeof call === "object" || typeof call === "function") ? call : self;
}

Verify whether this has been initialized, whether super has been called, and return this that has been assigned by the parent class.

5. Assign the variables and functions inside the row subclass to this.

6. Execute the logic inside the subclass constuctor.

It can be seen that es6 actually provides us with a simple way of writing "combined parasitic inheritance".

3. super

super represents the parent class constructor.

super.fun1() is equivalent to Parent.fun1() or Parent.prototype.fun1().

super() is equivalent to Parent.prototype.construtor()

When we do not write a subclass constructor:

var Child = function (_Parent) {
  _inherits(Child, _Parent);

  function Child() {
    _classCallCheck(this, Child);

    return _possibleConstructorReturn(this, (Child.__proto__ || Object.getPrototypeOf(Child)).apply(this, arguments));
  }

  return Child;
}(Parent);

It can be seen that the default constructor will be actively called The parent class constructor, and by default passes the parameters passed by the current constructor to the parent class.

So when we declare the constructor, we must actively call super(), otherwise the parent constructor cannot be called and the inheritance cannot be completed.

A typical example is in Reatc's Component. We must call super(props) after declaring the constructor, because the parent class needs to do some initialization operations on props in the constructor.

The above is the detailed content of Implementation principles of ES6 classes and inheritance (code examples). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use