search
HomeWeb Front-endJS TutorialDetailed explanation of JavaScript weak mapping and weak collection knowledge

This article brings you relevant knowledge about javascript, which mainly introduces issues related to weak mapping and weak collections. Let’s take a look at it together. I hope it will be helpful to everyone.

Detailed explanation of JavaScript weak mapping and weak collection knowledge

[Related recommendations: javascript video tutorial, web front-end]

Simply speaking, if a If a variable or object is "unreachable", then there is no need for the variable or object to continue to be stored in memory and should be recycled.

For example:

let xiaoming = {name:'xiaoming'}//创建一个对象,并用变量xiaoming引用

xiaoming = null	//将变量xiaoming置空,从而使对象{name:'xiaoming'}不可达

//{name:'xiaoming'}对象被回收

If an object is referenced by an array and other objects, as long as it refers to the array and the object exists in the array, then the object is considered reachable.

Objects in the array:

let xiaoming = {name:'xiaoming'}
let arr = [xiaoming]
xiaoming = null //将变量xiaoming置空
//对象{name:'xiaoming'}由于存在于数组中,并不会被释放

Similarly, if we use an object as the key of Map, if Map exists, then the object It will not be recycled by the engine. Key objects in

Map:

let xiaoming = {name:'xiaoming'}
let map = new Map()
map.set(xiaoming,'a boy')
xiaoming = null //将变量xiaoming置空
//对象{name:'xiaoming'}由于是map的键,并不会被释放

WeapMap is essentially the same as Map in the processing of releasing key objects The difference is, simply put, WeapMap will not prevent garbage collection because the object is used as a key. The difference between

WeakMap

WeakMap and Map can be divided into three aspects:

  1. WeakMap Only objects can be used as keys
let weakMap = new WeakMap()
let obj = {name:'obj'}
weakMap.set(obj,'obj as the key')
weakMap.set('str','str as the key')//报错

The code execution results are as follows:

Detailed explanation of JavaScript weak mapping and weak collection knowledge

is visible when we use strings as When key is used, the program cannot execute normally.

  1. Does not prevent the engine from recycling keys (objects)

That is, if an object has no other references except the reference to WeakMap , then the object will be recycled by the system.

For example:

let weakMap = new WeakMap()
let obj = {name:'obj'}
weakMap.set(obj,'obj as the key')
obj = null	//将变量obj置空
//此时,对象{name:'obj'}就会被回收
  1. WeakMapSupported methods are limited
  • ##WeakMap Iteration is not supported
  • WeakMapNot supportedkeys()
  • WeakMapNot supportedvalues()
  • WeakMapDoes not support entires()
So, we have no way to get all key-value pairs.

WeakMapYou can only use the following methods:

  • weakMap.get(key)Get the key-value pair
  • weakMap.set(key,val)Set key-value pair
  • weakMap.delete(key)Delete key-value pair
  • weakMap .has(key)Determine whether it exists
The reason why we need to restrict the data access method of

WeakMap is because of the timing of JavaScript engine releasing the object It is impossible to determine.

When an object loses all references, the

JavaScript engine may release the space occupied by the object immediately, or it may wait a while.

So, at a certain moment, the number of elements in

WeakMap cannot be determined. (Just imagine, if we traverse the elements of WeakMap after an object loses all references, we may get different results.)

WeakMap use case

# The application scenario of ##WeakMap

is usually to store data that "belongs" to an object. When the object does not exist, the data that "belongs" to the object should also be released accordingly. There is a historical story that is very suitable for using WeakMap`: "The cunning rabbit dies, and the lackeys are cooked; the birds are gone, and the good bow is hidden."

If we use

JavaScript

code to describe this story, we should use WeakMap:<pre class="brush:php;toolbar:false">let weakMap = new WeakMap() let rabbit = {name:'rabbit'}   //狡兔 let runDog  = {name:'runDog'} //走狗 let flyBird = {name:'flyBird'} //飞鸟 let goodBow = {name:'goodBow'} //良弓 weakMap.set(rabbit,runDog) weakMap.set(flyBird,goodBow) rabbit = null //狡兔死 flyBird = null //飞鸟尽 //随即,走狗和良弓都会被释放,也可能不是立刻就释放 //这个故事告诉我们,当走狗没有啥好下场,可能不是立刻就被 //弄死了,但是迟早要弄死</pre>WeakSet

and

Compared with Set

, WeakSet has the following differences:

    WeakSet
  1. can only add object elements
  2. WeakSet
  3. Does not prevent the system from recycling elements
  4. WeakSet
  5. Supports add(), has(), delete()
  6. WeakSet
  7. does not support the size attribute and keys() method
  8. we can use
WeakMap

to verify some existence information, or verify "yes/no" status, for example, we can use WeakMap to determine whether the user is online: <pre class="brush:php;toolbar:false">let onlineUser = new WeakMap() let zhangSan = {name:'张三'} let liSi = {name:'李四'} let wangEr = {name:'王二'} let maZi = {name:'麻子'} function login(user){     ... ...     onlineUser.add(user) } //判断用户是否在线 function isOnline(user){     return onlineUser.has(user) }</pre>

The limitation of WeakMap

and WeakSet is that they cannot iterate and obtain all elements at once, which does not affect their important role in very critical places. <h2 id="Summary">Summary</h2> <ol> <li> <code>WeakMap can only use objects as keys. When all external references to the keys are lost (there are no other variable references except WeakMap key object), WeakMap will not prevent the engine from recycling key values. Once recycled, the elements corresponding to WeakMap no longer exist.

  • WeakSet can only store objects. Once the object element loses all external references (except WeakSet, no other variables refer to the element object), WeakSet Will not prevent the engine from recycling elements. Once recycled, the corresponding elements in WeakSet disappear.
  • Their common advantage is that they can reduce the memory footprint of objects in appropriate scenarios.
  • Does not support clear(), size, keys(), values() and other methods
  • WeakMap and WeakSet are often used to store the data structure associated with the "main" object. Once the "main" object loses its meaning, the corresponding associated data structure is naturally deleted.

    【Related recommendations: javascript video tutorial, web front-end

    The above is the detailed content of Detailed explanation of JavaScript weak mapping and weak collection knowledge. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
    es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

    去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

    JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

    本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

    原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

    怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

    JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

    本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

    JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

    本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

    javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

    方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

    整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

    本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

    20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

    本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    MinGW - Minimalist GNU for Windows

    MinGW - Minimalist GNU for Windows

    This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

    MantisBT

    MantisBT

    Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor