扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:佚名 来源:microsoft 2007年11月10日
关键字:
Imports System.IO 'The namespace System.Threading 'contains the Thread class Imports System.Threading Module Module1 Private count As Long Sub Main() 'Create the ThreadStart delegate Dim tStart As ThreadStart = New _ ThreadStart(AddressOf StartCounting) 'Create the thread Dim t1 As Thread = New Thread(tStart) Console.WriteLine("Enter q to quit") t1.Start() 'start the thread While (Console.Read() <> asc("q")) 'repeat the loop until the user enters q End While t1.Stop() 'tell thread to stop processing t1.Join() 'wait until the thread finishes End Sub Sub StartCounting() Do 'use Interlocked.Increment in case 'another thread is accessing the same variable Interlocked.Increment(count) Console.WriteLine( _ "After incrementing count is : {0}", count) Thread.Sleep(200) Loop End Sub End Module |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者