我有一个可以独立运行的TThread类,并在完成后终止并释放自己。我考虑了终止,一切正常。问题是,我想添加一个用户可以选择的功能,并选择同时激活多少个SYNCHRONOUS线程。一个例子是:
我做的第一步是创建我的TThread类的3个实例,并在for循环中恢复它们。所以3个线程正在运行。第一个线程完成(或终止)后,需要创建并恢复另一个新实例。
我对这一点感到困惑,我想知道如何实现这一点。 任何建议都会有所帮助。
编辑:部分代码
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
type
TMyThread = class (TThread)
public
procedure Execute; override;
end;
var
Form1 : TForm1;
Threads : Integer = 3;
TotalTasks : Integer = 100;
implementation
{$R *.dfm}
procedure TMyThread.Execute;
begin
// some work...
sleep (2000 + random (5000));
end;
function DummyThread ( p : pointer ) : Integer; stdcall;
var
NewInstanceOfTMyThread : TMyThread;
I : Integer;
begin
for I := 1 to Threads do begin
with TMyThread.Create (TRUE) do begin
resume;
end;
end;
// Here should be code to detect if a new thread has to be started, etc.
end;
// We start the task to start the tasks...
procedure TForm1.Button1Click(Sender: TObject);
var
ThreadID : DWORD;
begin
CloseHandle (CreateThread(NIL, 0, @DummyThread, NIL, 0, ThreadID));
end;
end.
答案 0 :(得分:3)
您可以为TThread的OnTerminate事件编写处理程序。处理程序应该启动/恢复一个新线程。
或者你可以拥有3个不断运行的线程并从某个队列中获取任务(只需要处理同步队列访问)。