Detailed explanation of several ways to write private variables of ES6 implementation class

Detailed explanation of several ways to write private variables of ES6 implementation class

Closure implementation of private variables

Private variables are not shared

Through the new keyword, the this inside the person constructor will point to Tom, opening up a new space and executing all the steps again.

class Person{ 
    constructor(name){ 
      let _num = 100; 

      this.name = name;
      this.getNum = function(){
        return _num;
      } 
      this.addNum = function(){
        return ++_num
      } 
    }
  }
  
  const tom = new Person('tom')
  const jack = new Person('jack')
  tom.addNum() 
  console.log(tom.getNum()) //101
  console.log(jack.getNum()) //100 

Private variables can be shared

To avoid generating a new private variable for each function, which would cause the problem that some variables cannot be shared, we can put this private variable outside the class constructor and continue to return this variable through a closure.

const Person = (function () {
    let _num = 100;

    return class _Person {
      constructor(name) {
        this.name = name; 
      }
      addNum() {
       return ++_num
      }
      getNum() {
       return _num
      } 
    }
  })() 

  const tom = new Person('tom')
  const jack = new Person('jack') 
  tom.addNum()
  console.log(tom.getNum()) //101
  console.log(jack.getNum()) //101

In this case, if the two methods are mixed, you can have two types of private variables, sharable and non-sharable.

Disadvantages: Many copies will be added during instantiation, which consumes more memory.

Symbol implements private variables of class

Symbol Introduction:

Create a unique value. All Symbols are not equal to each other. When creating a Symbol, you can add a description Symbol ("desc") to it. Currently, the key of the object also supports Symbol.

const name = Symbol('name')
const person = { // class name [name]: 'www',
  say(){
    console.log(`name is ${this[name]} `) 
  } 
} 
person.say()
console.log(name)

The key created by using Symbol for the object cannot be iterated and serialized by Json, so its main function is to add a unique value to the object.
But you can use getOwnProporitySymbols() to get the Symbol.
Disadvantages: The new syntax is not widely compatible with browsers.

Symbol private variables of the implementation class

It is recommended to use closures to create a reference to a Symbol, so that you can obtain this reference in the method area of ​​the class, avoiding the situation where all methods are written in the constructor and space is allocated to assign methods every time a new instance is created, resulting in memory waste.

const Person = (function () {
 let _num = Symbol('_num: private variable');
 
 return class _Person {
  constructor(name) {
   this.name = name;
   this[_num] = 100
  }
  addNum() {
   return ++this[_num]
  }
  getNum() {
   return this[_num]
  } 
 }
})()

const tom = new Person('tom')
const jack = new Person('jack')

console.log(tom.addNum()) //101 
console.log(jack.getNum()) //100

Creating private variables through weakmap

About MDN

accomplish:

const Parent = (function () {
 const privates = new WeakMap();

 return class Parent {
  constructor() {
   const me = {
    data: "Private data goes here"
   };
   privates.set(this, me);
  }
  getP() {
   const me = privates.get(this);
   return me
  }
 } 
})()

let p = new Parent()
console.log(p)
console.log(p.getP())

Summarize

In summary, the weakmap method can save memory, be easy to recycle, and be compatible with more browsers, which is also the most recommended implementation method.

This concludes this article on several ways to write private variables in ES6 implementation classes. For more information about private variables in ES6 classes, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the implementation of private variables in the ES6 series

<<:  Share 9 Linux Shell Scripting Tips for Practice and Interviews

>>:  A brief discussion on the manifestation and value selection method of innodb_autoinc_lock_mode

Recommend

Detailed explanation of how to use join to optimize SQL in MySQL

0. Prepare relevant tables for the following test...

Detailed explanation of various HTTP return status codes

When a request is sent to your server to display ...

The use of vue directive v-bind and points to note

Table of contents 1. v-bind: can bind some data t...

Introduction to Semantic HTML Tags

In the past few years, DIV+CSS was very popular in...

MySQL can actually implement distributed locks

Preface In the previous article, I shared with yo...

React implements a general skeleton screen component example

Table of contents What is a skeleton screen? Demo...

React+Koa example of implementing file upload

Table of contents background Server Dependencies ...

base target="" specifies the target of the base link to open the frame

<base target=_blank> changes the target fram...

Some tips for writing high-performance HTML applications

How can you improve web page performance? Most de...

Solve the problem of docker pull image error

describe: Install VM under Windows 10, run Docker...

Solution to Linux CentOS 6.5 ifconfig cannot query IP

Recently, some friends said that after installing...

Detailed explanation of the installation steps of the MySQL decompressed version

1. Go to the official website: D:\mysql-5.7.21-wi...

jQuery achieves full screen scrolling effect

This article example shares the specific code of ...

React + Threejs + Swiper complete code to achieve panoramic effect

Let’s take a look at the panoramic view effect: D...