Thread.IsBackground Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví hodnotu určující, zda je vlákno vlákno na pozadí.
public:
property bool IsBackground { bool get(); void set(bool value); };
public bool IsBackground { get; set; }
member this.IsBackground : bool with get, set
Public Property IsBackground As Boolean
Hodnota vlastnosti
true
pokud je toto vlákno nebo se má stát vláknem na pozadí; v opačném případě false
.
Výjimky
Vlákno je neschůdné.
Příklady
Následující příklad kontrastuje chování vláken popředí a pozadí. Vytvoří vlákno na popředí a vlákno na pozadí. Vlákno na popředí udržuje proces spuštěný, dokud nedokončí smyčku a for
neukončí se. Jak však ukazuje výstup z příkladu, protože vlákno na popředí bylo dokončeno, proces se ukončí před dokončením spuštění vlákna na pozadí.
using namespace System;
using namespace System::Threading;
ref class BackgroundTest
{
private:
int maxIterations;
public:
BackgroundTest(int maxIterations)
{
this->maxIterations = maxIterations;
}
void RunLoop()
{
for (int i = 0; i < maxIterations; i++ )
{
Console::WriteLine("{0} count: {1}",
Thread::CurrentThread->IsBackground ?
"Background Thread" : "Foreground Thread", i);
Thread::Sleep(250);
}
Console::WriteLine("{0} finished counting.",
Thread::CurrentThread->IsBackground ?
"Background Thread" : "Foreground Thread");
}
};
int main()
{
BackgroundTest^ shortTest = gcnew BackgroundTest( 10 );
Thread^ foregroundThread = gcnew Thread( gcnew ThreadStart( shortTest, &BackgroundTest::RunLoop ) );
foregroundThread->Name = "ForegroundThread";
BackgroundTest^ longTest = gcnew BackgroundTest( 50 );
Thread^ backgroundThread = gcnew Thread( gcnew ThreadStart( longTest, &BackgroundTest::RunLoop ) );
backgroundThread->Name = "BackgroundThread";
backgroundThread->IsBackground = true;
foregroundThread->Start();
backgroundThread->Start();
}
using System;
using System.Threading;
class Example
{
static void Main()
{
BackgroundTest shortTest = new BackgroundTest(10);
Thread foregroundThread =
new Thread(new ThreadStart(shortTest.RunLoop));
BackgroundTest longTest = new BackgroundTest(50);
Thread backgroundThread =
new Thread(new ThreadStart(longTest.RunLoop));
backgroundThread.IsBackground = true;
foregroundThread.Start();
backgroundThread.Start();
}
}
class BackgroundTest
{
int maxIterations;
public BackgroundTest(int maxIterations)
{
this.maxIterations = maxIterations;
}
public void RunLoop()
{
for (int i = 0; i < maxIterations; i++) {
Console.WriteLine("{0} count: {1}",
Thread.CurrentThread.IsBackground ?
"Background Thread" : "Foreground Thread", i);
Thread.Sleep(250);
}
Console.WriteLine("{0} finished counting.",
Thread.CurrentThread.IsBackground ?
"Background Thread" : "Foreground Thread");
}
}
// The example displays output like the following:
// Foreground Thread count: 0
// Background Thread count: 0
// Background Thread count: 1
// Foreground Thread count: 1
// Foreground Thread count: 2
// Background Thread count: 2
// Foreground Thread count: 3
// Background Thread count: 3
// Background Thread count: 4
// Foreground Thread count: 4
// Foreground Thread count: 5
// Background Thread count: 5
// Foreground Thread count: 6
// Background Thread count: 6
// Background Thread count: 7
// Foreground Thread count: 7
// Background Thread count: 8
// Foreground Thread count: 8
// Foreground Thread count: 9
// Background Thread count: 9
// Background Thread count: 10
// Foreground Thread count: 10
// Background Thread count: 11
// Foreground Thread finished counting.
Imports System.Threading
Public Module Example
Public Sub Main()
Dim shortTest As New BackgroundTest(10)
Dim foregroundThread As New Thread(AddressOf shortTest.RunLoop)
Dim longTest As New BackgroundTest(50)
Dim backgroundThread As New Thread(AddressOf longTest.RunLoop)
backgroundThread.IsBackground = True
foregroundThread.Start()
backgroundThread.Start()
End Sub
End Module
Public Class BackgroundTest
Dim maxIterations As Integer
Sub New(maximumIterations As Integer)
maxIterations = maximumIterations
End Sub
Sub RunLoop()
For i As Integer = 0 To maxIterations
Console.WriteLine("{0} count: {1}", _
If(Thread.CurrentThread.IsBackground,
"Background Thread", "Foreground Thread"), i)
Thread.Sleep(250)
Next
Console.WriteLine("{0} finished counting.",
If(Thread.CurrentThread.IsBackground,
"Background Thread", "Foreground Thread"))
End Sub
End Class
' The example displays output like the following:
' Foreground Thread count: 0
' Background Thread count: 0
' Background Thread count: 1
' Foreground Thread count: 1
' Foreground Thread count: 2
' Background Thread count: 2
' Foreground Thread count: 3
' Background Thread count: 3
' Background Thread count: 4
' Foreground Thread count: 4
' Foreground Thread count: 5
' Background Thread count: 5
' Foreground Thread count: 6
' Background Thread count: 6
' Background Thread count: 7
' Foreground Thread count: 7
' Background Thread count: 8
' Foreground Thread count: 8
' Foreground Thread count: 9
' Background Thread count: 9
' Background Thread count: 10
' Foreground Thread count: 10
' Background Thread count: 11
' Foreground Thread finished counting.
Poznámky
Vlákno je buď vlákno na pozadí, nebo vlákno na popředí. Vlákna na pozadí jsou stejná jako vlákna na popředí s tím rozdílem, že vlákna na pozadí nezabraňují ukončení procesu. Jakmile se všechna vlákna na popředí patřící do procesu ukončí, modul CLR (Common Language Runtime) proces ukončí. Všechna zbývající vlákna na pozadí jsou zastavena a nejsou dokončena.
Ve výchozím nastavení se následující vlákna spouští v popředí (to znamená, že jejich IsBackground vlastnost vrací false
):
Primární vlákno (nebo hlavní vlákno aplikace).
Všechna vlákna vytvořená voláním Thread konstruktoru třídy.
Ve výchozím nastavení se na pozadí spustí následující vlákna (to znamená, že jejich IsBackground vlastnost vrací true
):
Vlákna fondu vláken, což je fond pracovních vláken udržovaných v modulu runtime. Fond vláken můžete nakonfigurovat a naplánovat práci na vláknech fondu vláken pomocí ThreadPool třídy .
Poznámka
Asynchronní operace založené na úlohě se automaticky spouští ve vláknech fondu vláken.
Všechna vlákna, která vstupují do prostředí spravovaného spouštění z nespravovaného kódu.