本文整理汇总了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.