主题:请教一个线程问题
在module中有一个过程:
public sub test()
'从access数据库中读出记录
'将该记录保存到sql server数据库中
end sub
在form中,将针对该过程启动多个线程:
dim s1 as New System.Threading.Thread = System.Threading.Thread(AddressOf test)
dim s2 as New System.Threading.Thread = System.Threading.Thread(AddressOf test)
dim s3 as New System.Threading.Thread = System.Threading.Thread(AddressOf test)
等等...
这样同时执行test过程的时候,会不会造成test过程中的变量混乱?应该如何避免?
谢谢!请各位高手帮助指点!
public sub test()
'从access数据库中读出记录
'将该记录保存到sql server数据库中
end sub
在form中,将针对该过程启动多个线程:
dim s1 as New System.Threading.Thread = System.Threading.Thread(AddressOf test)
dim s2 as New System.Threading.Thread = System.Threading.Thread(AddressOf test)
dim s3 as New System.Threading.Thread = System.Threading.Thread(AddressOf test)
等等...
这样同时执行test过程的时候,会不会造成test过程中的变量混乱?应该如何避免?
谢谢!请各位高手帮助指点!