Summary of 6 solutions for implementing singleton mode in JS

Summary of 6 solutions for implementing singleton mode in JS

Preface

Today, I was reviewing the creational pattern in the design pattern and found that there are many ways to implement the singleton pattern in JS. I summarized them briefly and listed the following 6 ways to share with you.

Generally speaking, the content is divided into two parts: ES5 (Function) and ES6 (Class) implementation.

The concept of singleton pattern

The singleton pattern is to save an instance in the system, which is a global variable. In team development, in order to achieve some similar functions, such as form validation between different pages, the requirements may be different, but the names may be the same, then there will be conflicts. At this time, the singleton pattern can solve this problem well.

  • An instance is produced only once
  • Ensure that a class has only one instance and provide a global access point to it

Talk about its advantages:

1. The singleton pattern declares a namespace, which generates a unique global variable, a namespace, which can be declared in the same way as an object declaration:

var mapleTao={ name:"mapleTao",init:function(){console.log(this.name)}};

Have you found that this is a bit similar to an object? In fact, name and init are its properties. You can get the value of its name through mapleTao.name, and call the init method through mapleTao.init(). In this way, when dealing with multiple demand pages and multi-person development, you can solve the problem of naming conflicts well, and you can better maintain and control the code.

2. The singleton mode only declares one variable in the global state. As we all know, in js, if you write a method, such as function aa(){}, a variable called aa will be generated in the window. When a function is implemented, many functions will be created in the code encapsulation. In this way, many variables will be created in the window, which will occupy more memory units. The scope of global variables is very wide and may change in many processing functions. In this way, it is not easy to find bugs quickly when they occur. However, the object variables created by the singleton mode can find problems more quickly and solve them, which greatly reduces the time for problem repair and system loading.

3. It has more advantages in terms of memory and resource usage than creating new objects by new when implementing the same function.

Method 1

Use instanceof to determine whether to use the new keyword to call a function to instantiate an object

function User() {
    if (!(this instanceof User)) {
        return
    }
    if (!User._instance) {
        this.name = 'Unnamed'
        User._instance = this
    }
    return User._instance
}

const u1 = new User()
const u2 = new User()

console.log(u1===u2); // true

Method 2

Add method attribute call directly to the function to generate an instance

function User(){
    this.name = 'Unnamed'
}
User.getInstance = function(){
    if(!User._instance){
        User._instance = new User()
    }
    return User._instance
}

const u1 = User.getInstance()
const u2 = User.getInstance()

console.log(u1===u2);

Method 3

Using closures, improved method 2

function User() {
    this.name = 'Unnamed'
}
User.getInstance = (function () {
    var instance
    return function () {
        if (!instance) {
            instance = new User()
        }
        return instance
    }
})()

const u1 = User.getInstance()
const u2 = User.getInstance()

console.log(u1 === u2);

Method 4

Implemented using wrapper objects combined with closures

const User = (function () {
    function _user() {
        this.name = 'xm'
    }
    return function () {
        if (!_user.instance) {
            _user.instance = new _user()
        }
        return _user.instance
    }
})()

const u1 = new User()
const u2 = new User()

console.log(u1 === u2); // true

Of course, the closure code can be encapsulated as a function

When singletons are frequently used, it is recommended to use a solution similar to this method. Of course, the internal implementation can use any of the above methods.

function SingleWrapper(cons) {
    // Exclude non-functions and arrow functions if (!(cons instanceof Function) || !cons.prototype) {
        throw new Error('Not a legal constructor')
    }
    var instance
    return function () {
        if (!instance) {
            instance = new cons()
        }
        return instance
    }
}

function User(){
    this.name = 'xm'
}
const SingleUser = SingleWrapper(User)
const u1 = new SingleUser()
const u2 = new SingleUser()
console.log(u1 === u2);

Method 5

Use new.target in the constructor to determine whether to use the new keyword

class User{
    constructor(){
        if(new.target !== User){
            return
        }
        if(!User._instance){
            this.name = 'xm'
            User._instance = this
        }
        return User._instance
    }
}

const u1 = new User()
const u2 = new User()
console.log(u1 === u2);

Method 6

Using static methods

class User {
    constructor() {
        this.name = 'xm'
    }
    static getInstance() {
        if (!User._instance) {
            User._instance = new User()
        }
        return User._instance
    }
}


const u1 = User.getInstance()
const u2 = User.getInstance()

console.log(u1 === u2);

Summarize

This is the end of this article about JS implementation of the singleton pattern. For more relevant JS singleton pattern content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Two solutions for js singleton mode
  • Detailed example of js singleton mode
  • javascript singleton pattern demonstration code javascript object-oriented programming
  • Singleton in Javascript
  • Easily master the JavaScript singleton mode
  • JS Design Patterns: Singleton Pattern (I)
  • JavaScript design pattern singleton pattern example
  • [JS Master Road] Example of implementing modal box in singleton mode
  • Introduction and examples of Javascript singleton pattern
  • JS implements the encapsulation of data addition, deletion, modification and query functions based on the singleton pattern in the design pattern

<<:  Solution to index failure in MySQL due to different field character sets

>>:  Detailed explanation of mysql execution plan id is empty (UNION keyword)

Recommend

Various transformation effects of HTML web page switching

<META http-equiv="Page-Enter" CONTENT...

Example of deploying MySQL on Docker

Table of contents 1 What is container cloud? 2 In...

Detailed tutorial on compiling and installing MySQL 8.0.20 from source code

In the previous article, we introduced: MySQL8.0....

Solve the black screen problem after VMware installs Linux system and starts

1. Installation environment 1. HUAWEI mate x cpu ...

About ROS2 installation and docker environment usage

Table of contents Why use Docker? Docker installa...

The impact of limit on query performance in MySQL

I. Introduction First, let me explain the version...

Linux uses bond to implement dual network cards to bind a single IP sample code

In order to provide high availability of the netw...

Detailed tutorial on compiling and installing MySQL 5.7.24 on CentOS7

Table of contents Install Dependencies Install bo...

How to regularly clean up docker private server images

Using CI to build docker images for release has g...

MySQL 8.0.25 installation and configuration tutorial under Linux

The latest tutorial for installing MySQL 8.0.25 o...

A brief introduction to MySQL database optimization techniques

A mature database architecture is not designed wi...