Type Method 型メソッド

weakToStrongObjects()

Returns a new map table object which has weak references to the keys and strong references to the values. 新しいマップテーブルオブジェクトを返します、それは弱い参照をキーに対してそして強い参照を値に対して持ちます。

Declaration 宣言

class func weakToStrongObjects() -> NSMapTable<KeyType, ObjectType>

Return Value 戻り値

A new map table object which has weak references to the keys and strong references to the values. ある新しいマップテーブルオブジェクト、それは弱い参照をキーに対してそして強い参照を値に対して持ちます。

Discussion 議論

Use of weak-to-strong map tables is not recommended. The strong values for weak keys which get zeroed out continue to be maintained until the map table resizes itself. 「弱から強」のマップテーブルの使用は、推奨されません。ゼロアウトされた弱いキーに対する強い値は、マップテーブルそれ自体が大きさを変えるまで、保守を続けられます。

See Also 参照

Creating and Initializing a Map Table マップテーブルの作成と初期化