- disableCollectorForPointer:
Specifies that a given pointer will not be collected.
与えられたポインタが収集されないことを指定します。
Availability 有効性
Technology
- (void)enableCollectorForPointer:(const void *)ptr;
ptr
A pointer to the memory that may be collected. 収集されるかもしれないメモリへのポインタ。
You use this method to make memory that was previously marked as uncollectable. For example, given the address of the global dictionary created in disable
, you could make the dictionary collectable as follows:
あなたは、このメソッドを使って、収集されないと前もって印されたメモリを作成します。例えば、disable
において作成されたグローバル辞書のアドレスを与えられて、あなたはその辞書を収集可能にできます、以下のように:
For more about root objects and scanned memory, see Garbage Collection Programming Guide. ルートオブジェクトとメモリスキャンについて更には、Garbage Collection Programming Guideを見てください。
- disableCollectorForPointer: