Instance Method
インスタンスメソッド
main()
The main entry point routine for the thread.
スレッドに対するメインエントリポイントルーチン。
Discussion
議論
The default implementation of this method takes the target and selector used to initialize the receiver and invokes the selector on the specified target. If you subclass NSThread
, you can override this method and use it to implement the main body of your thread instead. If you do so, you do not need to invoke super
.
このメソッドの省略時の実装は、レシーバを初期化するのに使われたターゲットとセレクタを取ります、そしてセレクタをその指定されたターゲット上で発動します。あなたがNSThread
のサブクラスを作成するならば、あなたはこのメソッドをオーバーライドして、そしてそれをあなたのスレッドのメインボディを実装するために代わりに使用できます。あなたがそうするならば、あなたはsuper
を発動する必要はありません。
You should never invoke this method directly. You should always start your thread by invoking the start()
method.
あなたは決してこのメソッドを直接に発動すべきではありません。あなたは、常にあなたのスレッドをstart()
メソッドを発動することによって開始するべきです。
See Also
参照
Starting a Thread
スレッドを開始する