本文整理匯總了VB.NET中System.Threading.Thread.IsBackground屬性的典型用法代碼示例。如果您正苦於以下問題:VB.NET Thread.IsBackground屬性的具體用法?VB.NET Thread.IsBackground怎麽用?VB.NET Thread.IsBackground使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.Threading.Thread
的用法示例。
在下文中一共展示了Thread.IsBackground屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: Example
' 導入命名空間
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
輸出:
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.