search
HomeWeb Front-endJS TutorialDetailed explanation of JavaScript inheritance (1)_js object-oriented

Object-oriented and object-based

Almost every developer has development experience in object-oriented languages ​​(such as C, C#, Java). In traditional object-oriented languages, there are two very important concepts - classes and instances. A class defines the public behaviors and methods of a class of things; and an instance is a specific implementation of the class. We also know that object-oriented programming has three important concepts - encapsulation, inheritance and polymorphism.

But in the world of JavaScript, all these features don’t seem to exist. Because JavaScript itself is not an object-oriented language, but an object-based language. There are some interesting features here. For example, everything in JavaScript is an object, including strings, arrays, dates, numbers, and even functions, such as the following example:

    // 定义一个函数 - add<BR>    function add(a, b) {<BR>      add.invokeTimes++;<BR>      return a + b;<BR>    }<BR>    // 因为函数本身也是对象,这里为函数add定义一个属性,用来记录此函数被调用的次数<BR>    add.invokeTimes = 0;<br><br>    add(1 + 1);<BR>    add(2 + 3);<BR>    console.log(add.invokeTimes);  // 2<BR>    

Simulate classes and inheritance in JavaScript

In object-oriented languages, we use classes to create a custom object. However, everything in JavaScript is an object. So how to create a custom object?

This requires the introduction of another concept - prototype. We can simply regard prototype as a template. The newly created custom objects are all copies of this template (prototype) (actually not copies but It’s a link, but this link is invisible and feels like a copy).

Let’s look at an example of creating a custom object via prototype:

    // 构造函数<BR>    function Person(name, sex) {<BR>      this.name = name;<BR>      this.sex = sex;<BR>    }<BR>    // 定义Person的原型,原型中的属性可以被自定义对象引用<BR>    Person.prototype = {<BR>      getName: function() {<BR>        return this.name;<BR>      },<BR>      getSex: function() {<BR>        return this.sex;<BR>      }<BR>    }<BR>    

Here we call the function Person a constructor, which is a function that creates a custom object. It can be seen that JavaScript simulates the functions of classes through constructors and prototypes.
Code to create a custom object (instantiated class):

    var zhang = new Person("ZhangSan", "man");<BR>    console.log(zhang.getName());  // "ZhangSan"<br><br>    var chun = new Person("ChunHua", "woman");<BR>    console.log(chun.getName());  // "ChunHua"<BR>    

When the code var zhang = new Person("ZhangSan", "man") is executed, the following things are actually done internally:

  • Create a blank object (new Object()).
  • Copy the attributes (key-value pairs) in Person.prototype to this empty object (as we mentioned earlier, the internal implementation is not a copy but a hidden link).
  • Pass this object into the constructor through the this keyword and execute the constructor.
  • Assign this object to variable zhang.

In order to prove that the prototype template is not copied into the instantiated object, but is a way of linking, please see the following code:

    function Person(name, sex) {<BR>      this.name = name;<BR>      this.sex = sex;<BR>    }<BR>    Person.prototype.age = 20;<br><br>    var zhang = new Person("ZhangSan", "man");<BR>    console.log(zhang.age);  // 20<BR>    // 覆盖prototype中的age属性<BR>    zhang.age = 19;<BR>    console.log(zhang.age);  // 19<BR>    delete zhang.age;<BR>    // 在删除实例属性age后,此属性值又从prototype中获取<BR>    console.log(zhang.age);  // 20<BR>    

This hidden prototype link implemented within JavaScript is the warm soil on which JavaScript depends, and is also the basis for simulation implementation inheritance.

How to implement simple inheritance in JavaScript?
The following example will create an employee class Employee, which inherits all the properties in the prototype prototype from Person.

    function Employee(name, sex, employeeID) {<BR>      this.name = name;<BR>      this.sex = sex;<BR>      this.employeeID = employeeID;<BR>    }<BR>    // 将Employee的原型指向Person的一个实例<BR>    // 因为Person的实例可以调用Person原型中的方法, 所以Employee的实例也可以调用Person原型中的所有属性。<BR>    Employee.prototype = new Person();<BR>    Employee.prototype.getEmployeeID = function() {<BR>      return this.employeeID;<BR>    };<br><br>    var zhang = new Employee("ZhangSan", "man", "1234");<BR>    console.log(zhang.getName());  // "ZhangSan<BR>    

The above implementation of inheritance is very rough and has many problems:

  • Person is instantiated when creating the Employee constructor and prototype (hereinafter referred to as the class), which is inappropriate.
  • The constructor of Employee cannot call the constructor of the parent class Person, resulting in repeated assignment of the name and sex attributes in the Employee constructor.
  • The function in Employee will overwrite the function of the same name in Person, and there is no overloading mechanism (this is the same type of problem as the previous one).
  • The syntax for creating JavaScript classes is too fragmented and not as elegant as the syntax in C#/Java.
  • There is a pointing error in the constructor attribute in the implementation, which will be discussed in the second article.

We will improve this example in Chapter 3.

Implementation of JavaScript inheritance

Because JavaScript itself does not have a complete implementation of classes and inheritance, and we have also seen many problems with manual implementation, there are already many implementations of this challenging task on the Internet:

This series of articles will analyze these implementations in depth one by one, and ultimately achieve an in-depth understanding of how classes and inheritance are implemented in JavaScript.

In the next chapter, we will introduce relevant knowledge in class implementation, such as this, constructor, prototype, etc.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
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