Return Value 戻り値
A memory zone of memory that is not scanned. 走査されないメモリのメモリ区域。
Availability 有効性
Technology
- (NSZone
*)zone;
A memory zone of memory that is not scanned. 走査されないメモリのメモリ区域。
The collector provides a NSZone
-style allocation interface, primarily for compatibility with existing code that maintains zone affinity. Such memory is unscanned and you must free it using NSZone
. This is exactly equivalent to calling NSAllocate
with the option NSCollector
.
コレクターは、NSZone
形式のアプリケーションインターフェイスを提供します、区域相性を保守する既存のコードとの互換性のために主として。そのようなメモリは、走査されません、そしてあなたはそれをNSZone
を使って自由にしなければなりません。これは、NSAllocate
をオプションNSCollector
とともに呼び出すことと正確に等しいです。
You should typically allocate garbage-collected memory using NSAllocate
.
あなたは、概してガベージコレクションされるメモリをNSAllocate
を使ってアロケートすべきです。