Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

重学js —— 键集合之Map对象 #127

Open
lizhongzhen11 opened this issue Jul 4, 2020 · 0 comments
Open

重学js —— 键集合之Map对象 #127

lizhongzhen11 opened this issue Jul 4, 2020 · 0 comments
Labels
js基础 Good for newcomers 重学js 重学js系列 规范+MDN

Comments

@lizhongzhen11
Copy link
Owner

lizhongzhen11 commented Jul 4, 2020

Map对象

构造器

  • 即固有对象 %Map%
  • 全局对象 "Map" 属性的初始值
  • ...

Map ( [ iterable ] )

  1. 如果 NewTargetundefined,抛 TypeError 异常
  2. 定义 map? OrdinaryCreateFromConstructor(NewTarget, "%Map.prototype%", « [[MapData]] »)
  3. map.[[MapData]] 设置为新的空 List
  4. 如果 iterableundefinednull,返回 map
  5. 定义 adder? Get(map, "set")
  6. 返回 ? AddEntriesFromIterable (map, iterable, adder)

如果 iterable 存在,它应该是一个实现了 @@iterator 方法的对象。该方法能返回一个迭代对象,产生一个具有两位元素的 类数组对象。第一个元素作为 Mapkey,第二个元素作为 value

构造器上的属性

Map.prototype

初始值为 %Map.prototype%

属性描述符为:{ [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }

Map原型对象上的属性

  • 即固有对象 %MapPrototype%
  • [[Prototype]] 内置插槽,其值为 %Object.prototype%
  • 属于 普通对象
  • 没有 [[MapData]] 内置插槽

Map.prototype.clear ( )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[MapData]])
  3. 定义 entriesListM.[[MapData]]
  4. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. p.[[Key]] 设置为 empty
    2. p.[[Value]] 设置为 empty
  5. 返回 undefined

Map.prototype.delete ( key )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[MapData]])
  3. 定义 entriesListM.[[MapData]]
  4. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不是 emptySameValueZero(p.[[Key]], key) 为 true
      1. p.[[Key]] 设置为 empty
      2. p.[[Value]] 设置为 empty
      3. 返回 true
  5. 返回 false

Map.prototype.entries ( )

  1. 定义 Mthis
  2. 返回 ? CreateMapIterator(M, key+value)

Map.prototype.forEach ( callbackfn [ , thisArg ] )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[MapData]])
  3. 如果 callbackfn 不可调用,抛 TypeError 异常
  4. 定义 entriesListM.[[MapData]]
  5. 按原先插入顺序遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } e
    1. 如果 e.[[Key]] 不为 empty (空)
      1. 执行 ? Call(callbackfn, thisArg, « e.[[Value]], e.[[Key]], M »)
  6. 返回 undefined

Map.prototype.get ( key )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[MapData]])
  3. 定义 entriesListM.[[MapData]]
  4. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不为空 且 SameValueZero(p.[[Key]], key) 为 true,返回 p.[[Value]]
  5. 返回 undefined

Map.prototype.has ( key )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[MapData]])
  3. 定义 entriesListM.[[MapData]]
  4. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不为空 且 SameValueZero(p.[[Key]], key) 为 true,返回 true
  5. 返回 false

Map.prototype.keys ( )

  1. 定义 Mthis
  2. 返回 ? CreateMapIterator(M, key)

Map.prototype.set ( key, value )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[MapData]])
  3. 定义 entriesListM.[[MapData]]
  4. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不为空 且 SameValueZero(p.[[Key]], key) 为 true
      1. p.[[Value]] 设置为 value
      2. 返回 M
  5. 如果 key-0,将 key 设置为 -0
  6. 定义 pRecord{ [[Key]]: key, [[Value]]: value }
  7. p 添加到 entries 末尾
  8. 返回 M

Map.prototype.values ( )

  1. 定义 Mthis
  2. 返回 ? CreateMapIterator(M, value)

get Map.prototype.size

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[MapData]])
  3. 定义 entriesListM.[[MapData]]
  4. 定义 count 为 0
  5. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不为空,将 count 设置为 count + 1
  6. 返回 count

Map Iterator Objects

CreateMapIterator ( map, kind )

  1. 执行 ? RequireInternalSlot(map, [[MapData]])
  2. 定义 iteratorOrdinaryObjectCreate(%MapIteratorPrototype%, « [[IteratedMap]], [[MapNextIndex]], [[MapIterationKind]] »)
  3. iterator.[[IteratedMap]] 设置为 map
  4. iterator.[[MapNextIndex]] 设置为 0
  5. iterator.[[MapIterationKind]] 设置为 kind
  6. 返回 iterator

%MapIteratorPrototype% 对象

@lizhongzhen11 lizhongzhen11 added js基础 Good for newcomers 重学js 重学js系列 规范+MDN labels Jul 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
js基础 Good for newcomers 重学js 重学js系列 规范+MDN
Projects
None yet
Development

No branches or pull requests

1 participant