WeakMap implementation in EcmaScript5?

前端 未结 1 508
一向
一向 2020-12-08 15:17

I\'ve run across a JavaScript library that implement a cross-browser WeakMap in ES5. (WeakMap is slated for ES6.)

How can this pos

相关标签:
1条回答
  • 2020-12-08 15:59

    It took me a while to grok the code, but then it hit me: the key itself is used to store a reference to the value.

    For example, several layers into set it does

    defProp(obj, globalID, { value: store });
    

    where defProp has been defined to be Object.defineProperty, obj is the key, globalID is a guid and store is a storage object that contains the value.

    Then down in get it looks up the value with

    obj[globalID];

    This is very clever. The WeakMap doesn't actually contain a reference to anything (weak or otherwise)-- it just sets up a policy of where to secretly store the value. The use of Object.defineProperty means that you won't accidentally discover the value storage-- you have to know the magic guid to look it up.

    Since the key directly refers to the value (and the WeakMap doesn't refer to it), when all references to the key are gone, it gets GCed like normal.

    0 讨论(0)
提交回复
热议问题