Type Method 型メソッド

threadPriority

Returns the current thread’s priority. 現在のスレッドの優先度を返します。

Declaration 宣言

+ (double)threadPriority;

Return Value 戻り値

The current thread’s priority, which is specified by a floating point number from 0.0 to 1.0, where 1.0 is highest priority. 現在のスレッドのもつ優先度、それは0.0から1.0までの浮動小数点数によって指定されます、そこで1.0は最も高い優先度です。

Discussion 議論

The priorities in this range are mapped to the operating system's priority values. A “typical” thread priority might be 0.5, but because the priority is determined by the kernel, there is no guarantee what this value actually will be. この範囲の中の優先度は、オペレーティングシステムのもつ優先度の値に対応付けされます。“典型的な” スレッド優先度は0.5であるかもしれません、しかし優先度がカーネルによって決定されることから、この値が実際にそうであることは保証がありません。

See Also 参照

Prioritizing Thread Work スレッド作業の優先順位を付ける