Home Web Front-end JS Tutorial Detailed explanation of class, constructor, and factory functions in Javascript

Detailed explanation of class, constructor, and factory functions in Javascript

Dec 21, 2017 pm 02:40 PM
class javascript js

In the ES6 era, our methods of creating objects have increased. We can choose different methods to create them in different scenarios. There are currently three main ways to build objects, the class keyword, constructor, and factory function. They are all means of creating objects, but they are different. During daily development, you also need to choose based on these differences. This article mainly introduces the detailed explanation of classes, constructors, and factory functions in Javascript. Friends who need it can refer to it. I hope it can help everyone.

First let’s take a look at what these three methods look like


// class 关键字,ES6新特性
class ClassCar {
 drive () {
  console.log('Vroom!');
 }
}
const car1 = new ClassCar();
console.log(car1.drive());
// 构造函数
function ConstructorCar () {}
ConstructorCar.prototype.drive = function () {
 console.log('Vroom!');
};
const car2 = new ConstructorCar();
console.log(car2.drive());
// 工厂函数
const proto = {
 drive () {
  console.log('Vroom!');
 }
};
function factoryCar () {
 return Object.create(proto);
}
const car3 = factoryCar();
console.log(car3.drive());
Copy after login

These methods are all based on prototype creation, and all support construction. Implementation of private variables in functions. In other words, these functions have most of the same characteristics and are even equivalent in many scenarios.

In Javascript, every function can return a new object. When it is not a constructor or class, it is called a factory function.

ES6 classes are actually syntactic sugar for constructors (at least this is how they are implemented at this stage), so everything discussed next applies to constructors and ES6 classes:


class Foo {}
console.log(typeof Foo); // function
Copy after login

Benefits of constructors and ES6 classes

  • Most books will teach you how to Use classes and constructors

  • ' this ' points to the new object.

  • Some people like the readability of the new keyword

  • There may be some small differences in details, but if If there are no problems during the development process, don’t worry too much.

Disadvantages of constructors and ES6 classes

1. You need the new keyword

In ES6, both constructors and classes need to have the new keyword.


function Foo() {
 if (!(this instanceof Foo)) { return new Foo(); }
}
Copy after login

In ES6, if you try to call a class function without the new keyword, a task will be thrown. If you want one without the new keyword, you can only use a factory function to wrap it.

2. The details during the instantiation process are exposed to the external API

All calls are closely related to the implementation of the constructor. If you need to make some changes during the construction process yourself Hands and feet, that is a very troublesome thing.

3. The constructor does not comply with the Open / Closed rule

Because of the detailed processing of the new keyword, the constructor violates the Open / Closed rule: the API should be open for expansion and avoid modification.

I once questioned that classes and factory functions are so similar, upgrading the class function to a factory function will not have any impact, but in JavaScript, it does have an impact.

If you start writing constructors or classes, but as you continue, you find that you need the flexibility of the factory function. At this time, you cannot simply change the function and walk away.

Unfortunately, you are a JavaScript programmer, and transforming a constructor into a factory function is a major operation:


// 原来的实现:
// class Car {
//  drive () {
//   console.log('Vroom!');
//  }
// }
// const AutoMaker = { Car };
// 工厂函数改变的实现:
const AutoMaker = {
 Car (bundle) {
  return Object.create(this.bundle[bundle]);
 },
 bundle: {
  premium: {
   drive () {
    console.log('Vrooom!');
   },
   getOptions: function () {
    return ['leather', 'wood', 'pearl'];
   }
  }
 }
};
// 期望中的用法是:
const newCar = AutoMaker.Car('premium');
newCar.drive(); // 'Vrooom!'
// 但是因为他是一个库
// 许多地方依然这样用:
const oldCar = new AutoMaker.Car();
// 如此就会导致:
// TypeError: Cannot read property 'undefined' of
// undefined at new AutoMaker.Car
Copy after login

In the above example, we start from Start with a class, and finally change it into a factory function that can create objects based on a specific prototype. Such a function can be widely used in interface abstraction and special needs customization.

4. Use constructors to give instanceof an opportunity

The difference between constructors and factory functions is the instanceof operator. Many people use instanceof to ensure the correctness of their code. But to be honest, this is very problematic, and it is recommended to avoid the use of instanceof.

instanceof will lie.


// instanceof 是一个原型链检查
// 不是一个类型检查
// 这意味着这个检查是取决于执行上下文的,
// 当原型被动态的重新关联,
// 你就会得到这样令人费解的情况
function foo() {}
const bar = { a: 'a'};
foo.prototype = bar;
// bar是一个foo的实例吗,显示不是
console.log(bar instanceof foo); // false
// 上面我们看到了,他的确不是一个foo实例
// baz 显然也不是一个foo的实例,对吧?
const baz = Object.create(bar);
// ...不对.
console.log(baz instanceof foo); // true. oops.
Copy after login

instanceof does not check like other strongly typed languages, it just checks the object on the prototype chain.

In some execution contexts, it will become invalid, such as when you change Constructor.prototype.

Another example is that you start with a constructor or class, and then you expand it into another object, just like the case where it was rewritten as a factory function above. At this time instanceof will also have problems.

In short, instanceof is another big change in constructor and factory function calls.

Benefits of using classes

  • A convenient, self-contained keyword

  • The only authoritative way to implement classes in JavaScript.

  • # It is a good experience for other developers who have experience in class language development.

Disadvantages of using classes

All the disadvantages of constructors, plus:

Use the extends keyword to create a problematic class, for users It's a big temptation.
Hierarchical inheritance of classes will cause many well-known problems, including fragmented base class (the base class will be destroyed due to inheritance), gorilla banana problem (objects mixed with complex contexts), duplication by necessity (classes are inherited diversified need to be modified from time to time) and so on.

Although the other two methods may also get you into these problems, when using the extend keyword, the environment will lead you down this path. In other words, it leads you toward writing code with inflexible relationships, rather than more reusable code.

Benefits of using factory functions

Factory functions are more flexible than classes and constructors, and will not lead people to errors path of. It also won’t get you stuck in a deep inheritance chain. You can use many methods to simulate inheritance

1. Return any object with any prototype

For example, you can create different instances of a media player through the same implementation Instances can be created for different media formats, using different APIs, or an event library can be for DOM events or ws events.

The factory function can also instantiate objects through the execution context, which can benefit from the object pool and a more flexible inheritance model.

2. No worries about complex refactoring

You will never have the need to convert a factory function into a constructor, so refactoring is not necessary.

3. Without new

You don’t need the new keyword to create a new object. You can master this process by yourself.

4. Standard this behavior

This is the this you are familiar with, and you can use it to get the parent object. For example, in player.create(), this points to player, and other this can also be bound through call and apply.

5. No trouble with instanceof

6. Some people like the readability and intuitiveness of writing directly without new.

Disadvantages of factory functions

  • does not automatically handle prototypes, and factory function prototypes will not affect the prototype chain.

  • this does not automatically point to the new object in the factory function.

  • There may be some small differences in details, but if there are no problems during the development process, don’t worry too much.

Conclusion

In my opinion, class may be a convenient keyword, but it cannot hide it Will lead unsuspecting users into the pit of inheritance. Another risk is the possibility that in the future you want to use factory functions, and you have to make very big changes.

If you are working in a relatively large team, if you want to modify a public API, you may interfere with code that you cannot access, so you cannot turn a blind eye to the impact of modified functions.

One of the great things about the factory pattern is that it is not only more powerful and flexible, but also encourages the entire team to make the API simpler, safer, and lighter.

Related recommendations:

Detailed introduction to this and return in JavaScript constructor

How to use factory pattern and constructor in JavaScript to create objects?

Detailed examples of the difference between javascript function literals and Function() constructors

How to use factory mode, constructor mode, and prototype mode in javascript Detailed explanation of creating object instances

Detailed explanation of expressions and constructors in basic javascript tutorial

The above is the detailed content of Detailed explanation of class, constructor, and factory functions in Javascript. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Hot Topics

Java Tutorial
1654
14
PHP Tutorial
1252
29
C# Tutorial
1225
24
How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Dec 17, 2023 pm 06:55 PM

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

See all articles