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. 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 weakmapAbout 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()) SummarizeIn 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:
|
<<: 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
0. Prepare relevant tables for the following test...
When a request is sent to your server to display ...
Table of contents 1. v-bind: can bind some data t...
In the past few years, DIV+CSS was very popular in...
Preface In the previous article, I shared with yo...
Table of contents What is a skeleton screen? Demo...
Table of contents background Server Dependencies ...
<base target=_blank> changes the target fram...
Deploy the MySQL environment locally (192.168.1.1...
How can you improve web page performance? Most de...
describe: Install VM under Windows 10, run Docker...
Recently, some friends said that after installing...
1. Go to the official website: D:\mysql-5.7.21-wi...
This article example shares the specific code of ...
Let’s take a look at the panoramic view effect: D...