Type Method 型メソッド

exit()

Terminates the current thread. 現在のスレッドを終了します。

Declaration 宣言

class func exit()

Discussion 議論

This method uses the current class method to access the current thread. Before exiting the thread, this method posts the NSThreadWillExit with the thread being exited to the default notification center. Because notifications are delivered synchronously, all observers of NSThreadWillExit are guaranteed to receive the notification before the thread exits. このメソッドは、currentクラスメソッドを使って、現在のスレッドにアクセスします。スレッドを退出する前に、このメソッドはNSThreadWillExitを退出させられているスレッドで省略時の通知センターへと投函します。通知が同時に配達されることから、NSThreadWillExitの全てのオブザーバはスレッドが退出する前に通知を受け取ることを保証されます。

Invoking this method should be avoided as it does not give your thread a chance to clean up any resources it allocated during its execution. このメソッドを発動することは回避されるべきです、それが、あなたのスレッドにその遂行の間にそれが配分されたあらゆるリソースを片付ける機会を与えないときは。

See Also 参照

Stopping a Thread あるスレッドを停止する

Related Documentation 関連文書