Preface JavaScript is not like other languages that can use keywords to declare private variables. Closures There are many ways to describe closures, such as: The logic of using closures to construct private variables is: function outside(){ let val = 123; function inside(){ return val; } return inside; } console.log(outside()());//123 The example above gives us a general idea of the logic of using closures to build private variables, but it is not enough to reflect the importance of private variables. A const variable can also achieve the effect of the above code: //The same can be accessed, but not modified, achieving the effect of the above code const val = 123; console.log(val);//123 The following code will specifically reflect the importance of private variables: function person(){ let _name = 'unknown'; let _age = 18; let _sex = 'man'; function setName(name){ _name = name || 'unknown'; } function getName(){ return _name; } function setAge(age){ if(typeof age === 'number'){ _age = Math.floor(age); }else{ throw Error("typeof age !== 'number'"); } } function getAge(){ return _age; } function setSex(sex){ if(sex === 'man' || sex === 1){ _sex = 'man'; }else if(sex === 'woman' || sex === 0){ _sex = 'woman'; }else{ throw Error('input error'); } } function getSex(){ return _sex; } return { setName : setName, getName : getName, setAge : setAge, getAge : getAge, setSex : setSex, getSex : getSex } } let xiaoming = person(); let xiaohong = person(); xiaoming.setName('xiaoming'); xiaohong.setName('xiaohong'); console.log('xiaoming name : ' + xiaoming.getName());//xiaoming name : xiaoming console.log('xiaohong name : ' + xiaohong.getName());//xiaohong name : xiaohong xiaoming.setAge(19.3333); xiaohong.setAge('16');//Uncaught Error: typeof age !== 'number' console.log('xiaoming age : ' + xiaoming.getAge());//xiaoming age : 19 console.log('xiaohong age : ' + xiaohong.getAge());//xiaohong age : 18 xiaoming.setSex(1); xiaohong.setSex('woman'); console.log('xiaoming sex : ' + xiaoming.getSex());//xiaoming sex : man console.log('xiaohong sex : ' + xiaohong.getSex());//xiaohong sex : woman From the above code, we can see that if we want to set or get the values of the three variables _name, _age, and _sex, we can only use the fixed methods such as setName, getName, setAge, getAge, setSex, getSex, etc., and in all setter methods, the formal parameters are judged. This means that all operations on the object will be under control, which to some extent weakens some of the negative effects of JavaScript as a weakly typed language. WeakMap If you don’t know much about WeakMap, you can first read the detailed introduction of WeakMap. let nameWeakMap = new WeakMap(); let ageWeakMap = new WeakMap(); let sexWeakMap = new WeakMap(); function person(){ let _hash = Object.create(null); nameWeakMap.set(_hash,'unknown'); ageWeakMap.set(_hash,18); sexWeakMap.set(_hash,'man'); function setName(name){ nameWeakMap.set(_hash,name || 'unknown'); } function getName(){ return nameWeakMap.get(_hash); } function setAge(age){ if(typeof age === 'number'){ ageWeakMap.set(_hash,Math.floor(age)); }else{ throw Error("typeof age !== 'number'"); } } function getAge(){ return ageWeakMap.get(_hash); } function setSex(sex){ if(sex === 'man' || sex === 1){ sexWeakMap.set(_hash,'man'); }else if(sex === 'woman' || sex === 0){ sexWeakMap.set(_hash,'woman'); }else{ throw Error('input error'); } } function getSex(){ return sexWeakMap.get(_hash); } return { setName : setName, getName : getName, setAge : setAge, getAge : getAge, setSex : setSex, getSex : getSex } } let xiaoming = person(); let xiaohong = person(); xiaoming.setName('xiaoming'); xiaohong.setName('xiaohong'); console.log('xiaoming name : ' + xiaoming.getName());//xiaoming name : xiaoming console.log('xiaohong name : ' + xiaohong.getName());//xiaohong name : xiaohong xiaoming.setAge(19.3333); xiaohong.setAge('16');//Uncaught Error: typeof age !== 'number' console.log('xiaoming age : ' + xiaoming.getAge());//xiaoming age : 19 console.log('xiaohong age : ' + xiaohong.getAge());//xiaohong age : 18 xiaoming.setSex(1); xiaohong.setSex('woman'); console.log('xiaoming sex : ' + xiaoming.getSex());//xiaoming sex : man console.log('xiaohong sex : ' + xiaohong.getSex());//xiaohong sex : woman The same effect is achieved by building private variables. By the way, WeakMap is used to construct private variables in class. ConclusionThis article only records what I know about the methods and functions of constructing private variables in JavaScript. If there are any errors or omissions, please point them out. Thank you very much. The above are the details of the two ways to declare private variables in JavaScript. For more information about declaring private variables in JavaScript, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Linux automatically deletes logs and example commands from n days ago
>>: HTTP and HTTP Collaboration Web Server Access Flow Diagram
Ubuntu 15.04 opens MySQL remote port 3306. All th...
Table of contents 1. Introduction to SQL Injectio...
1. Installation environment Docker supports the f...
Last weekend, a brother project was preparing to ...
Drag and drop is a common function in the front e...
Table of contents Dynamically change themes The f...
Restart all stopped Docker containers with one co...
Table of contents Preface 1. The significance of ...
[Problem description] On the application side, th...
By chance, I discovered that a SQL statement prod...
background During the project development process...
Table of contents 1.setInterval() 2.setTimeout() ...
Table of contents Functional Components How to wr...
Find the installation directory of VirtualBox. Th...
1. Download the mysql-5.7.17-winx64.zip installat...