This article mainly introduces the detailed explanation of classes, constructors, and factory functions in Javascript. Friends who need it can refer to it
In the ES6 era, our methods of creating objects have increased, and in different scenarios Next we can choose different methods to build. 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.
First let's take a look at what these three methods are 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());
These methods are all based on prototype creation, and all support the implementation of private variables in the constructor function. 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
The benefits of constructors and ES6 classes
Most books will teach you 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
By ES6, both constructors and classes need to have the new keyword.
function Foo() { if (!(this instanceof Foo)) { return new Foo(); } }
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
In the above example, we started with a class and finally changed it to Come up with a factory function that can create objects based on a specific prototype. Such a function can be widely used for 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 a big problem, 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.
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), the 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 down the wrong path. 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.
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
How to implement websocket communication function in nodejs
How to implement Tuya in WeChat applet
Detailed interpretation of how to use parent components "outside" React components
Detailed interpretation of the iterable protocol in ES6 syntax
The above is the detailed content of How to use classes, constructors, and factory functions in Javascript. For more information, please follow other related articles on the PHP Chinese website!

如何使用JS和百度地图实现地图平移功能百度地图是一款广泛使用的地图服务平台,在Web开发中经常用于展示地理信息、定位等功能。本文将介绍如何使用JS和百度地图API实现地图平移功能,并提供具体的代码示例。一、准备工作使用百度地图API前,首先需要在百度地图开放平台(http://lbsyun.baidu.com/)上申请一个开发者账号,并创建一个应用。创建完成

js字符串转数组的方法:1、使用“split()”方法,可以根据指定的分隔符将字符串分割成数组元素;2、使用“Array.from()”方法,可以将可迭代对象或类数组对象转换成真正的数组;3、使用for循环遍历,将每个字符依次添加到数组中;4、使用“Array.split()”方法,通过调用“Array.prototype.forEach()”将一个字符串拆分成数组的快捷方式。

如何使用JS和百度地图实现地图多边形绘制功能在现代网页开发中,地图应用已经成为常见的功能之一。而地图上绘制多边形,可以帮助我们将特定区域进行标记,方便用户进行查看和分析。本文将介绍如何使用JS和百度地图API实现地图多边形绘制功能,并提供具体的代码示例。首先,我们需要引入百度地图API。可以利用以下代码在HTML文件中导入百度地图API的JavaScript

如何使用JS和百度地图实现地图热力图功能简介:随着互联网和移动设备的迅速发展,地图成为了一种普遍的应用场景。而热力图作为一种可视化的展示方式,能够帮助我们更直观地了解数据的分布情况。本文将介绍如何使用JS和百度地图API来实现地图热力图的功能,并提供具体的代码示例。准备工作:在开始之前,你需要准备以下事项:一个百度开发者账号,并创建一个应用,获取到相应的AP

js中new操作符做了:1、创建一个空对象,这个新对象将成为函数的实例;2、将新对象的原型链接到构造函数的原型对象,这样新对象就可以访问构造函数原型对象中定义的属性和方法;3、将构造函数的作用域赋给新对象,这样新对象就可以通过this关键字来引用构造函数中的属性和方法;4、执行构造函数中的代码,构造函数中的代码将用于初始化新对象的属性和方法;5、如果构造函数中没有返回等等。

这篇文章主要为大家详细介绍了js实现打字小游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

php在特定情况下可以读js内部的数组。其方法是:1、在JavaScript中,创建一个包含需要传递给PHP的数组的变量;2、使用Ajax技术将该数组发送给PHP脚本。可以使用原生的JavaScript代码或者使用基于Ajax的JavaScript库如jQuery等;3、在PHP脚本中,接收传递过来的数组数据,并进行相应的处理即可。

js全称JavaScript,是一种具有函数优先的轻量级,直译式、解释型或即时编译型的高级编程语言,是一种属于网络的高级脚本语言;JavaScript基于原型编程、多范式的动态脚本语言,并且支持面向对象、命令式和声明式,如函数式编程。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
