- enableCollectorForPointer:
A pointer to the memory that should not be collected. メモリへのポインタ、それは収集されるべきでないものです。
Availability 有効性
Technology
- (void)disableCollectorForPointer:(const void *)ptr;
ptr
A pointer to the memory that should not be collected. メモリへのポインタ、それは収集されるべきでないものです。
You use this method to ensure that memory at a given address will not be collected. You can use this, for example, to create new root objects: あなたはこのメソッドを使って、与えられたアドレスでのメモリが収集されないことを確実にできます。あなたはこれを使って、例えば、新しいルートオブジェクトを作成できます:
The new dictionary will not be collectable and will persist for the lifetime of the application unless it is subsequently passed as the argument to enable
. For more about root objects and scanned memory, see Garbage Collection Programming Guide.
新しい辞書は収集可能ではありません、そしてアプリケーションのライフタイムだけ存続します、それがその後に引数としてenable
に渡されるのでない限り。ルートオブジェクトとメモリスキャンについて更には、Garbage Collection Programming Guideを見てください。
- enableCollectorForPointer: