Thread.IsBackground Propriedade
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Recebe ou define um valor que indica se um thread é ou não um thread em segundo plano.
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
Valor de Propriedade
true se este fio for ou for para se tornar um fio de fundo; caso contrário, false.
Exceções
O fio está morto.
Exemplos
O exemplo seguinte contrasta o comportamento dos threads em primeiro plano e em fundo. Cria um fio em primeiro plano e um fio de fundo. O thread em primeiro plano mantém o processo a correr até completar o seu for ciclo e terminar. No entanto, como a saída do exemplo mostra, como a thread em primeiro plano terminou a execução, o processo é terminado antes de a thread em segundo plano terminar a execução.
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.
open System.Threading
type BackgroundTest(maxIterations) =
member _.RunLoop() =
for i = 0 to maxIterations - 1 do
printfn
$"""{if Thread.CurrentThread.IsBackground then
"Background Thread"
else
"Foreground Thread"} count: {i}"""
Thread.Sleep 250
printfn
$"""{if Thread.CurrentThread.IsBackground then
"Background Thread"
else
"Foreground Thread"} finished counting."""
let shortTest = BackgroundTest 10
let foregroundThread = Thread shortTest.RunLoop
let longTest = BackgroundTest 50
let backgroundThread = Thread longTest.RunLoop
backgroundThread.IsBackground <- true
foregroundThread.Start()
backgroundThread.Start()
// 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.
Observações
Um fio é ou um fio de fundo ou um fio de primeiro plano. Os threads em segundo plano são idênticos aos threads em primeiro plano, exceto que os threads em segundo plano não impedem que um processo termine. Uma vez que todas as threads de primeiro plano pertencentes a um processo terminam, o tempo de execução da linguagem comum termina o processo. Quaisquer threads de fundo restantes são parados e não se completam.
Por defeito, os seguintes threads executam-se em primeiro plano (isto é, a sua IsBackground propriedade retorna false):
O fio principal (ou principal tópico de aplicação).
Todos os threads criados chamando um construtor de Thread classe.
Por defeito, os seguintes threads executam-se em segundo plano (ou seja, a sua IsBackground propriedade retorna true):
Threads pool de threads, que são um pool de threads worker mantidos pelo runtime. Você pode configurar o pool de threads e agendar o trabalho em threads do pool usando a classe ThreadPool.
Note
As operações assíncronas baseadas em tarefas são performadas automaticamente em threads do pool de threads.
Todos os threads que entram no ambiente de execução gerenciado a partir de código não gerenciado.