风
风中流云
Unregistered / Unconfirmed
GUEST, unregistred user!
通常我都是这样用的
var
thid:dword;
begin
thread(nil,0,@myupdatefun,nil,0,thid);
其中myupdatefun是数据处理过程;
但是当在myupdatefun中发生非法错误的时候,整个程序就会自动退出,让你不知道在什么
地方出错,不知道为何,还是线程就是这样的。
1、thid是用来记录线程的唯一标识
函数前面的0才是存放空间
2、endthread(thid)
var
thid:dword;
begin
thread(nil,0,@myupdatefun,nil,0,thid);
其中myupdatefun是数据处理过程;
但是当在myupdatefun中发生非法错误的时候,整个程序就会自动退出,让你不知道在什么
地方出错,不知道为何,还是线程就是这样的。
1、thid是用来记录线程的唯一标识
函数前面的0才是存放空间
2、endthread(thid)