次の方法で共有


Thread.CurrentThread プロパティ

現在実行中のスレッドを取得します。

Public Shared ReadOnly Property CurrentThread As Thread
[C#]
public static Thread CurrentThread {get;}
[C++]
public: __property static Thread* get_CurrentThread();
[JScript]
public static function get CurrentThread() : Thread;

プロパティ値

現在実行中のスレッドを表す Thread

使用例

[Visual Basic, C#, C++] 次のコード例は IsThreadPoolThread プロパティの例の一部です。

 
Shared Sub ThreadMethod()
    Console.WriteLine("ThreadOne, executing ThreadMethod, " & _
        "is from the thread pool? {0}", _
        Thread.CurrentThread.IsThreadPoolThread)
End Sub

[C#] 
static void ThreadMethod()
{
    Console.WriteLine("ThreadOne, executing ThreadMethod, " +
        "is {0}from the thread pool.", 
        Thread.CurrentThread.IsThreadPoolThread ? "" : "not ");
}

[C++] 
static void ThreadMethod()
{
    Console::WriteLine(S"ThreadOne, executing ThreadMethod, "
        S"is {0}from the thread pool.", 
        Thread::CurrentThread->IsThreadPoolThread ? S"" : S"not ");
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard

参照

Thread クラス | Thread メンバ | System.Threading 名前空間