Home Web Front-end JS Tutorial Detailed explanation of the use of constructor method object impersonation based on JavaScript implementation of inheritance mechanism_Basic knowledge

Detailed explanation of the use of constructor method object impersonation based on JavaScript implementation of inheritance mechanism_Basic knowledge

May 16, 2016 pm 05:34 PM
Constructor

Ways of inheritance

ECMAScript has more than one way to implement inheritance. This is because the inheritance mechanism in JavaScript is not explicitly specified but implemented through imitation. This means that not all inheritance details are entirely handled by the interpreter. As the developer, you have the right to decide the inheritance method that works best for you. The most primitive inheritance implementation method is object impersonation. This method will be introduced below.

Object impersonation

The core of object impersonation to implement inheritance actually relies on using the this keyword in a function environment. The principle is as follows: the constructor uses the this keyword to assign values ​​to all properties and methods (that is, using the constructor method of class declaration). Because a constructor is just a function, you can make the ClassA constructor a method of ClassB and then call it. ClassB will receive the properties and methods defined in the constructor of ClassA. For example, define ClassA and ClassB in the following way:

Copy the code The code is as follows:

function ClassA(sColor) {
this.color = sColor;
this.sayColor = function () {
alert(this.color);
};
}

function ClassB(sColor) {
}


The keyword this refers to the object currently created by the constructor. But in this method, this points to the object it belongs to. The principle is to use ClassA as a regular function to establish the inheritance mechanism, rather than as a constructor. The inheritance mechanism can be implemented by using the constructor ClassB as follows:
Copy the code The code is as follows:

function ClassB (sColor) {
this.newMethod = ClassA;
this.newMethod(sColor);
delete this.newMethod;
}

In this code, ClassA is assigned the method newMethod (remember, the function name is just a pointer to it). The method is then called, passing it the parameter sColor of the ClassB constructor. The last line of code removes the reference to ClassA so that it can no longer be called in the future.

All new properties and new methods must be defined after removing the line of code for the new method. Otherwise, the relevant properties and methods of the super class may be overridden:

Copy the code The code is as follows:

function ClassB(sColor, sName) {
this.newMethod = ClassA;
this.newMethod(sColor);
delete this.newMethod;

this.name = sName;
this.sayName = function () {
alert(this.name);
};
}


To prove that the previous code is valid, you can run the following example:
Copy the code The code is as follows:

var objA = new ClassA("blue");
var objB = new ClassB("red", "John");
objA.sayColor(); //Output "blue"
objB.sayColor(); //Output "red"
objB.sayName(); //Output "John"

Object impersonation can achieve multiple inheritance

Interestingly, object impersonation can support multiple inheritance. For example, if there are two classes ClassX and ClassY, and ClassZ wants to inherit these two classes, you can use the following code:
Copy code The code is as follows:

function ClassZ() {
this.newMethod = ClassX;
this.newMethod();
delete this.newMethod;

this.newMethod = ClassY;
this.newMethod();
delete this.newMethod;
}


There is a drawback here, if there are two classes ClassX For properties or methods with the same name as ClassY, ClassY has high priority. Because it inherits from the later class. Apart from this minor problem, it is easy to implement multiple inheritance mechanisms using object impersonation.

Due to the popularity of this inheritance method, the third version of ECMAScript added two methods to the Function object, namely call() and apply(). Later, many derived methods for implementing inheritance were actually implemented based on call() and apply().

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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Constructor in Python Constructor in Python Sep 02, 2023 pm 04:29 PM

In Python, every class has a constructor, which is a special method specified inside the class. The constructor/initializer will be called automatically when a new object is created for the class. When an object is initialized, the constructor assigns values ​​to data members in the class. There is no need to define the constructor explicitly. But in order to create a constructor, we need to follow the following rules - For a class, it is allowed to have only one constructor. The constructor name must be __init__. Constructors must be defined using instance properties (just specify the self keyword as the first argument). It cannot return any value except None. Syntax classA():def__init__(self):pass Example Consider the following example and

C++ syntax error: The constructor defined outside the class must be added with the class name as a qualifier. How should it be corrected? C++ syntax error: The constructor defined outside the class must be added with the class name as a qualifier. How should it be corrected? Aug 22, 2023 pm 02:00 PM

C++ is a widely used object-oriented programming language. When defining the constructor of a class in C++, if you want to place the definition of the constructor outside the class, you need to add the class name as a qualifier to the definition of the constructor. To specify which class this constructor belongs to. This is a basic rule of C++ syntax. If this rule is not followed when defining the constructor of a class, a compilation error will appear, prompting "Constructors defined outside the class must be qualified with the class name." So, if you encounter this kind of compilation error, you should

What is a constructor? Detailed explanation of constructors in JavaScript What is a constructor? Detailed explanation of constructors in JavaScript Aug 04, 2022 pm 03:22 PM

As the basis of prototypes and prototype chains, first understanding the constructor and its execution process can better help us learn the knowledge of prototypes and prototype chains. This article will take you to learn more about the constructor in JavaScript and introduce how to use the constructor to create a js object. I hope it will be helpful to you!

Does go language have constructors? Does go language have constructors? Jan 10, 2023 pm 02:15 PM

Go language does not have constructors. Go language, as a structured language, does not have constructors in object-oriented languages. However, similar effects of constructors in object-oriented languages ​​can be achieved in some ways, that is, using the process of structure initialization to simulate the implementation of constructors.

C++ error: The constructor must be declared in the public area, how to deal with it? C++ error: The constructor must be declared in the public area, how to deal with it? Aug 21, 2023 pm 08:26 PM

In C++ programming, the constructor is an important function used to initialize the member variables of a class. It is automatically called when an object is created to ensure proper initialization of the object. The constructor must be declared in the class, but sometimes you will encounter the error message "The constructor must be declared in the public area." This error is usually caused by incorrect access modifiers on the constructor. In C++, class member variables and member functions have an access modifier, including public, private, and protected.

Let's talk about how to use the Object() function to create objects in JavaScript Let's talk about how to use the Object() function to create objects in JavaScript Aug 04, 2022 pm 04:32 PM

How to create objects using the Object() function? The following article will introduce you to the method of creating objects using the Object() constructor (with three other methods of creating objects). I hope it will be helpful to you!

C++ syntax error: A constructor with only a single parameter must be declared explicit. How to solve it? C++ syntax error: A constructor with only a single parameter must be declared explicit. How to solve it? Aug 22, 2023 am 09:01 AM

In C++ programming, you may encounter the following error message: Constructors with only a single parameter must be declared explicit. This error message may confuse beginners. Next, let's take a look at what explicit is in C++, the reasons why this error message appears, and how to solve this problem. The role of explicit in C++, if we define a constructor that only receives one parameter, then we need to use the keyword explici

Can there be only one constructor in es6? Can there be only one constructor in es6? Oct 18, 2022 pm 03:04 PM

Yes, each class can only have one constructor. If it contains multiple constructors, an exception will be thrown. The constructor is a special function that is mainly used to initialize objects, that is, assign initial values ​​to object member variables; two points should be noted when using the constructor: 1. The constructor is used to create a certain type of object, and its first letter must be capitalized ;2. The constructor only makes sense when used together with new.

See all articles