search
HomeWeb Front-endJS TutorialWhy should we inherit javascript inheritance_Basic knowledge

Quiz1
Does Javascript really need classes?
Let’s first look at some features of other object-oriented languages ​​with classes (such as Java).

Superclass and subclass
Superclass and Subclass are not to solve the problem of father and son, but to solve the inclusion relationship of classes Yes, we use Sub to represent "subclass" and Sup to represent "parent class", then there is:
 Sub Sup
There is a difference. For example, usually we can use subclasses as parent classes, but When recognizing people, we cannot regard the son as the father.
In other words, parent classes and subclasses are not designed to solve the problem of the same methods or attributes between classes.

For example
Some people like to do this:
We need some classes of animals in order to create some moving animals on the screen, but some of the moving animals are in the air Flying and some walking on the road.
So create two parent classes, one is Fly and the other is Walk:
Copy the code The code is as follows:

Class Fly{
Fly(){}
}
Class Walk{
Walk(){}
}

Then Lion They (you can also build some other animals walking on the road) belong to the Walk category, and the eagles (you can also build some other animals flying in the sky) belong to the Fly category:
Copy code The code is as follows:

Class Lion extend Walk{
}
Class Eagle extend Fly{
}

Finally create some instances of the Lion and Eagle classes, call the corresponding methods, and there will be some lions and eagles moving on the screen.
But this may not be a good design. For example, tomorrow the boss suddenly hits his head and wants to have an animal called Pegasus. They can fly in the sky, walk on the road, and sometimes fly. Time to walk.
In this case, this solution is completely useless.

Why did this design fail?
Inheritance is conditional, and the subclass must be able to strictly transform upward (become a parent class).
In the above example:
Lion is assumed to be equivalent to a walking animal (Walk), and Eagle is assumed to be equivalent to a flying animal (Fly).
This seems successful because the subclass can be strictly upward casted, but it has hidden dangers.
When a kind of Pegasus intervened, we discovered that lions are actually just "walking animals" and eagles are actually just "flying animals". This does not mean that animals can only fly or walk throughout their lives. , so the Pegasus, which can both fly and walk, cannot find its own home.
This example well proves that subclasses and parent classes are not designed to solve the problem of having the same methods between classes:
Some animals can walk and need to have the method Walk, but this should not be done by the child class. Class and parent class implementation.

Combination
We can solve this problem like this:
Copy code Code As follows:

Class Lion{
walker = new Walk();
walk(){
return walker.walk();
}
}
Class Eagle{
flyer = new Fly();
fly(){
return flyer.fly();
}
}
Class Pegasus{
walker = new Walk();
flyer = new Fly();
walk(){
return walker.walk();
}
fly(){
return flyer. fly();
}
}

Composition is simply creating objects of the original class inside the new class. So combination is to solve the problem of having the same methods between classes. In this example:
Walk is regarded as "the set of methods that walking animals should have", and similarly Fly is regarded as "the set of methods that walking animals should have", so for Pegasus, we only need Just combine Walk and Fly.

The purpose of inheritance
Inheritance is not the only way to reuse code, but inheritance has its advantages:
Subclasses can be transformed upwards into parent classes.
In this way we can ignore all subclass differences and operate as the same class, for example:
We have methods fn(A), fn(B), these two methods are actually similar, we want Reuse them.
Then we can set up a parent class C, where A is a subclass of C and B is a subclass of C, then fn(C) can be reused on A and B.

Back to Javascript
But back to Javascript, we found that the above example is not true.
Because Javascript itself is a weakly typed language, it does not pay attention to the type of the object it operates before (because it does not need to be compiled). It will only succeed or an error will occur.
At this time, inheritance seems unnecessary. Then the class is also not necessary.
I have been writing JavaScript for 8 years now, and I have never once found need to use an uber function. The super idea is fairly important in the classical pattern, but it appears to be unnecessary in the prototypal and functional patterns. I now see my early attempts to support the classical model in JavaScript as a mistake.
——Douglas Crockford
I have been writing Javascript code for 8 years and I have never found the need to use superclass functions. The idea of ​​superclasses is very important in classical design patterns, but it is not necessary in patterns based on prototypes and functions. I now feel that my early attempts to support classic mode in Javascript were a bad decision.

Safe Environment
Of course, you can manually determine the type and control the type of parameters to provide a safer environment.
For example, PHP, which is also a weakly typed scripting language, has to do this in order to simulate a strongly typed object-oriented language and set up a safe environment:
Copy code The code is as follows:

class ShopProductWriter{
public function write( $shopProduct ){
if( ! ( $shopProduct instanceof CdProduct ) && ! ( $shopProduct instanceof BookProduct ) ){
die( "Input wrong type" );
}
//If the type is correct, execute some code
}
}

— —PHP Objects, Patterns, and Practtice Third Edition . Matt Zandstra
But this is just a very ugly solution.

Classic inheritance syntax sugar implementation
However, classic inheritance is still the method favored by many people. Therefore, YUI, Prototype, Dojo, and MooTools all provide their own implementation solutions.
Among the more common solutions, the syntax is roughly like this:
Copy code The code is as follows:

var Person = Class.extend({
init: function(isDancing){
this.dancing = isDancing;
}
});
var Dancer = Person.extend ({
init: function(){
this._super( true );
}
});
var n = new Dancer();
alert(n.dancing ); //true

The most important implementation is the implementation of this._super. In fact, the extend function just reassembles the passed in object and turns it into a prototype object. The new constructor in prototype.
Please see Reference 1 for specific implementation.

The classic inheritance syntax sugar of ECMAScript 6
For class libraries to implement their own implementations, resulting in a large number of classic inheritance syntaxes, the ECMA organization seems not satisfied, and they are trying to add more intuitive ones to ECMAScript 6 Classic inheritance syntax sugar:
Copy code The code is as follows:

class Animal {
constructor(name) {
this.name = name;
}
sayName() {
console.log(this.name);
}
}
class Dog extends Animal {
constructor(name) {
super(name);
}
bark() {
console.log("Woof!");
}
}

Summary
Actually, classic inheritance is not necessary in Javascript.
However, because many people like the classic inheritance model, related syntactic sugar is provided in the new version of ECMAScript 6.
However, in China, the widespread use of this syntactic sugar on the front end should be a distant story...

Quiz2
What about Javascript-specific inheritance?

Prototypal inheritance
Prototypal inheritance does not solve the collection inclusion relationship in classic inheritance. In fact, prototypal inheritance solves the subordination relationship. The mathematical expression is:
 Sub. prototype ∈ Sup
Child constructor (subtype) prototype is an instance object built by a parent constructor (parent type). The prototype is actually something that needs to be shared among subtype instances:
Copy code The code is as follows:

function Being(){
this.living = true;
}
Being.prototype.walk = function(){
alert("I' m walking");
};
function Dancer(){
this.dancing = true;
}
Dancer.prototype = new Being();
Dancer.prototype.dance = function(){
alert ("I'm dancing");
};
var one = new Dancer();
one.walk();
one.dance();

Using borrowing, parasitism and other technologies can produce many different inheritance effects, but these technologies are only to solve some public and non-public issues of attributes and methods in prototype inheritance. Due to space issues, we will not discuss it further. If you are interested, you can refer to the relevant content of "Javascript Advanced Programming".

Thinking Questions
1. If the question about Pegasus at the beginning of the article is written in Javascript, how should it be designed? For example, we have the following two types:
Copy code The code is as follows:

function Walk() {
this.walk = function(){
//walk
};
}
function Fly(){
this.fly = function(){
/ /fly
};
}
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
解决PHP报错:继承父类时遇到的问题解决PHP报错:继承父类时遇到的问题Aug 17, 2023 pm 01:33 PM

解决PHP报错:继承父类时遇到的问题在PHP中,继承是一种重要的面向对象编程的特性。通过继承,我们能够重用已有的代码,并且能够在不修改原有代码的情况下,对其进行扩展和改进。尽管继承在开发中应用广泛,但有时候在继承父类时可能会遇到一些报错问题,本文将围绕解决继承父类时遇到的常见问题进行讨论,并提供相应的代码示例。问题一:未找到父类在继承父类的过程中,如果系统无

使用继承的Java程序来计算定期存款(FDs)和定期存款(RDs)的利息使用继承的Java程序来计算定期存款(FDs)和定期存款(RDs)的利息Aug 20, 2023 pm 10:49 PM

继承是一个概念,它允许我们从一个类访问另一个类的属性和行为。被继承方法和成员变量的类被称为超类或父类,而继承这些方法和成员变量的类被称为子类或子类。在Java中,我们使用“extends”关键字来继承一个类。在本文中,我们将讨论使用继承来计算定期存款和定期存款的利息的Java程序。首先,在您的本地机器IDE中创建这四个Java文件-Acnt.java−这个文件将包含一个抽象类‘Acnt’,用于存储账户详情,如利率和金额。它还将具有一个带有参数‘amnt’的抽象方法‘calcIntrst’,用于计

如何在PHP中使用多态和继承来处理数据类型如何在PHP中使用多态和继承来处理数据类型Jul 15, 2023 pm 07:41 PM

如何在PHP中使用多态和继承来处理数据类型引言:在PHP中,多态和继承是两个重要的面向对象编程(OOP)概念。通过使用多态和继承,我们可以更加灵活地处理不同的数据类型。本文将介绍如何在PHP中使用多态和继承来处理数据类型,并通过代码示例展示它们的实际应用。一、继承的基本概念继承是面向对象编程中的一种重要概念,它允许我们创建一个类,该类可以继承父类的属性和方法

PHP中的封装技术及应用PHP中的封装技术及应用Oct 12, 2023 pm 01:43 PM

PHP中的封装技术及应用封装是面向对象编程中的一个重要概念,它指的是将数据和对数据的操作封装在一起,以便提供对外部程序的统一访问接口。在PHP中,封装可以通过访问控制修饰符和类的定义来实现。本文将介绍PHP中的封装技术及其应用场景,并提供一些具体的代码示例。一、封装的访问控制修饰符在PHP中,封装主要通过访问控制修饰符来实现。PHP提供了三个访问控制修饰符,

PHP中的多重继承PHP中的多重继承Aug 23, 2023 pm 05:53 PM

继承:继承是面向对象编程(OOP)中的一个基本概念,它允许类从其他类继承属性和行为。它是一种基于现有类创建新类的机制,促进代码重用并建立类之间的层次关系。继承基于"父子"或"超类-子类"关系的概念。从中继承的类被称为超类或基类,而继承超类的类被称为子类或派生类。子类继承其超类的所有属性(变量)和方法(函数),还可以添加自己独特的属性和方法或覆盖继承的属性和方法继承的类型在面向对象编程(OOP)中,继承是一个基本概念,它允许类从其他类中继承属性和行为。它促进

如何使用Java强制继承代理final类?如何使用Java强制继承代理final类?Sep 06, 2023 pm 01:27 PM

如何使用Java强制继承代理final类?在Java中,final关键字用于修饰类、方法和变量,表示它们不可被继承、重写和修改。然而,在某些情况下,我们可能需要强制继承一个final类,以实现特定的需求。本文将讨论如何使用代理模式来实现这样的功能。代理模式是一种结构型设计模式,它允许我们创建一个中间对象(代理对象),该对象可以控制对另一个对象(被代理对象)的

继承、多态与接口:PHP面向对象的三大特性继承、多态与接口:PHP面向对象的三大特性May 11, 2023 pm 03:45 PM

PHP是一种服务器端编程语言,自PHP5之后开始支持面向对象编程(OOP)。OOP的核心思想是将数据和行为封装在对象中,以提高程序的可维护性和可扩展性。在PHP中,面向对象编程具有三大特性:继承、多态与接口。一、继承继承是指一个类可以从另一个类中继承属性和方法。被继承的类称为父类或基类,继承的类称为子类或派生类。子类可以通过继承获得父类中的属性和方法,并且可

如何在Go语言中实现封装和继承如何在Go语言中实现封装和继承Jul 23, 2023 pm 08:17 PM

如何在Go语言中实现封装和继承封装和继承是面向对象编程中的两个重要概念,它们可以使代码更加模块化和可维护,同时也为代码的复用提供了便利。本文将介绍在Go语言中如何实现封装和继承,并提供相应的代码示例。封装封装是将数据和功能进行封装,隐藏实现的细节,只暴露必要的接口给外部使用。在Go语言中,封装是通过导出和非导出标识符来实现的。首字母大写的标识符可以被其他包访

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 Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.