- enable
- isCollecting
Availability 有効性
Technology
- (BOOL)isEnabled;
YES
if garbage collection is enabled for the current process, otherwise NO
.
YES
、もしガベージコレクションが現在の処理に対して可能にされるならば、そうでなければNO
。
This method returns NO
if garbage collection is on, but has been temporarily suspended (using disable
).
このメソッドはNO
を返します、もしガベージコレクションが入りである、しかし一時的に一度停止されているならば(disable
を使って)。
To check whether the current process is using garbage collection check the result of [NSGarbage
. If default
is nil
, then garbage collection is permanently off. If default
is not nil
, then the current process is using garbage collection—you can then use is
to determine whether or not the collector is actually allowed to run right now.
現在のプロセスがガベージコレクションを使っているかどうかを調べるには[NSGarbage
の結果を確認してください。default
がnil
ならば、そのときガベージコレクションは永続的に切りです。default
がnil
でないならば、そのとき現在のプロセスはガベージコレクションを使っています — あなたはそのときis
を使ってコレクタが実際に今のところ動作を許可されるか否かを決定します。
- enable
- isCollecting