我在delphi中遇到多线程问题。我有一个名称列表(大约 2.000 个名称),我需要获取我网站中每个名称的一些数据。我的系统运行良好,除了线程控制。
我想创建 10 个线程,并且当某个线程终止时,创建另一个......直到列表结束。
var
Form1: TForm;
tCount: Integer; //threads count
implementation
type
TCheck = class(TThread)
public
constructor Create(Name: string);
destructor Destroy; Override;
protected
procedure Execute; Override;
end;
MainT = class(TThread)
protected
procedure Execute; Override;
end;
destructor TCheck.Destroy;
begin
Dec(tCount);
end;
procedure MainT.Execute;
var
i: Integer;
Load: TStringList;
begin
Load:=TStringList.Create;
Load.LoadFromFile('C:\mynames.txt');
for i:= 0 to Load.Count -1 do
begin
if tCount = 10 then //if we have 10 threads running...
begin
repeat
Sleep(1);
until tCount < 10;
end;
TCheck.Create(Load.Strings[i]);
TCheck.Start;
Inc(tCount);
end;
end; // end of procedure
好吧,我没有放 TCheck.Constructor 因为问题是我检查创建线程数的方法。我的意思是,我的软件只是停止,没有任何错误消息,有时检查 500 个名称,有时检查 150 个名称......
抱歉英语不好。