Detailed explanation of JavaScript prototypal inheritance examples

零下一度
Release: 2017-07-02 10:24:11
Original
1397 people have browsed it

This article mainly introduces the relevant information ofJavaScriptprototypal inheritance in detail, which has certain reference value. Interested friends can refer to

in traditional based on In Class languages such as Java and C++, the essence of inheritance is to extend an existing Class and generate a new Subclass.
Since this type of language strictly distinguishes between classes and instances, inheritance is actually an extension of types. However, due to the use of prototypal inheritance in JavaScript, we cannot directly extend a Class because the type Class does not exist at all.

But there are still ways. Let’s first review theStudentconstructor:


function Student(props) { this.name = props.name || 'Unnamed'; } Student.prototype.hello = function () { alert('Hello, ' + this.name + '!'); }
Copy after login

and## Prototype chain of #Student:

Now, we need to extend

based onStudentPrimaryStudent, you can first definePrimaryStudent:

##

function PrimaryStudent(props) { // 调用Student构造函数,绑定this变量: Student.call(this, props); this.grade = props.grade || 1; }
Copy after login

However, Calling the

Studentconstructor does not mean inheriting theStudent, created byPrimaryStudentThe prototype ofObjectis:
new PrimaryStudent() ----> PrimaryStudent.prototype ---->

Object

.prototype -- --> null
We must find a way to modify the prototype chain to:


new PrimaryStudent() ----> PrimaryStudent.prototype ----> ; Student.prototype ----> Object.prototype ----> null


In this way, the prototype chain is correct and the inheritance relationship is correct. New objects created based on

PrimaryStudentcan not only call the methods defined byPrimaryStudent.prototype, but also callMethod defined by Student.prototype.If you want to do it in the simplest and crudest way:PrimaryStudent.prototype = Student.prototype;


It won’t work! If this is the case,

PrimaryStudentandStudentshare a prototype object, then why do we need to define PrimaryStudent?
We must use an intermediate object to implement the correct prototype chain. The prototype of this intermediate object must point to Student.prototype. In order to achieve this, refer to the code of Dao Ye (the Douglas who invented JSON), the intermediate object can be implemented with an empty function F:


// PrimaryStudent构造函数: function PrimaryStudent(props) { Student.call(this, props); this.grade = props.grade || 1; } // 空函数F: function F() { } // 把F的原型指向Student.prototype: F.prototype = Student.prototype; // 把PrimaryStudent的原型指向一个新的F对象,F对象的原型正好指向Student.prototype: PrimaryStudent.prototype = new F(); // 把PrimaryStudent原型的构造函数修复为PrimaryStudent: PrimaryStudent.prototype.constructor = PrimaryStudent; // 继续在PrimaryStudent原型(就是new F()对象)上定义方法: PrimaryStudent.prototype.getGrade = function () { return this.grade; }; // 创建xiaoming: var xiaoming = new PrimaryStudent({ name: '小明', grade: 2 }); xiaoming.name; // '小明' xiaoming.grade; // 2 // 验证原型: xiaoming.proto === PrimaryStudent.prototype; // true xiaoming.proto.proto === Student.prototype; // true // 验证继承关系: xiaoming instanceof PrimaryStudent; // true xiaoming instanceof Student; // true
Copy after login

Use A diagram to represent the new prototype chain:

Note that function F is only used for bridging. We only create a new F() instance and do not change the original Some Student-defined prototype chains.

If you encapsulate the inheritance action with a


inherits()function, you can also hide the definition of F and simplify the code:

function inherits(Child, Parent) { var F = function () {}; F.prototype = Parent.prototype; Child.prototype = new F(); Child.prototype.constructor = Child; } 这个inherits()函数可以复用: function Student(props) { this.name = props.name || 'Unnamed'; } Student.prototype.hello = function () { alert('Hello, ' + this.name + '!'); } function PrimaryStudent(props) { Student.call(this, props); this.grade = props.grade || 1; } // 实现原型继承链: inherits(PrimaryStudent, Student); // 绑定其他方法到PrimaryStudent原型: PrimaryStudent.prototype.getGrade = function () { return this.grade; };
Copy after login

Summary


The implementation of prototypal inheritance in JavaScript is:


1. Define a new constructor, And internally use call() to call the constructor you want to "inherit", and bind this;

2. Use the intermediate function F to implement prototype chain inheritance, preferably through the encapsulated inherits function;

3. Continue Define new methods on the prototype of the new constructor.

The above is the detailed content of Detailed explanation of JavaScript prototypal inheritance examples. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!