没有合适的资源?快使用搜索试试~ 我知道了~
首页VB.NET中的多线程开发
VB.NET中的多线程开发
需积分: 10 40 浏览量
更新于2023-05-28
评论
收藏 28KB DOC 举报
对于使用VB6的开发者而言,要在程序中实现多线程(multi-thread)功能,一般就是使用Win32 API调用。但凡是进行过这种尝试的开发者都会感觉到实现过程非常困难,而且总是会发生些null terminated strings GPF的错误。可是有了VB.NET,一切烦恼都成为过去。
资源详情
资源评论
资源推荐

VB.NET 中的多线程开发
引言
对于使用 VB6 的开发者而言,要在程序中实现多线程(multi-thread)功能,一般
就是使用 Win32 API 调用。但凡是进行过这种尝试的开发者都会感觉到实现过程非常
困难,而且总是会发生些 null terminated strings GPF 的错误。可是有了 VB.NET,一
切烦恼都成为过去。
自由线程(free threaded)
在 VB6 中,我们只能对组件设置多线程模式,这通常就是单元模式的多线程。对
于单元线程组件而言,组件中的每个可执行方法都将在一个和组件相联系的线程上运
行。这样,我们就可以通过创建新的组件实例,使得每个实例都有一个相应的线程单
元,从而达到每个正在运行的组件都有它自己的线程,多个组件可以在各自的单元中
同时运行方法。
但是如果在程序的 Session 或 Application 控制范围内,我们不会使用单元线程组
件,最佳的也是唯一的选择是自由线程组件。可是仅仅有 VB6 还不行,我们需要 VC+
+或 Java 的帮助。
现在好了,VB.NET 改善了这些功能,.NET SDK 中包含的 System.Threading 名
字空间专门负责实现多线程功能,而且操作相当简单:只需要利用 System.Threading
名字空间中的 Thread 类,就具有了实现自由线程的属性和方法。
一个创建自由线程的例子解析
我们来看看下面的 VB.NET 代码,它演示了实现自由线程的过程:
Imports System
' Import the threading namespace
Imports System.Threading
Public Class clsMultiThreading
' This is a simple method that runs a loop 5 times
' This method is the one called by the HelloWorldThreadingInVB
' class, on a separate thread.
Public Sub OwnThread()
Dim intCounter as integer
For intCounter = 1 to 5
Console.WriteLine("Inside the class: " & intCounter.ToString())
Next
End Sub
End Class
Public Class HelloWorldThreadingInVB
' This method is executed when this EXE is run
Public Shared Sub Main() Dim intCounter as integer
' Declare an instance of the class clsMultithreading object
Dim objMT as clsMultiThreading = new clsMultiThreading()
' Declare an instance of the Thread object. This class
' resides in the System.Threading namespace
Dim objNewThread as Thread
'Create a New Thread with the Thread Class and pass














安全验证
文档复制为VIP权益,开通VIP直接复制

评论0