在Delphi中,可以通过以下方法传递参数给线程:
type
TMyThread = class(TThread)
private
FParam: Integer;
public
constructor Create(Param: Integer);
procedure Execute; override;
end;
constructor TMyThread.Create(Param: Integer);
begin
inherited Create(True);
FParam := Param;
end;
procedure TMyThread.Execute;
begin
// 使用 FParam 做一些操作
end;
// 创建线程并传递参数
var
MyThread: TMyThread;
begin
MyThread := TMyThread.Create(123);
MyThread.Start;
end;
type
TMyThread = class(TThread)
private
FParam: Integer;
public
property Param: Integer read FParam write FParam;
procedure Execute; override;
end;
procedure TMyThread.Execute;
begin
// 使用 Param 做一些操作
end;
// 创建线程并设置参数
var
MyThread: TMyThread;
begin
MyThread := TMyThread.Create(True);
MyThread.Param := 123;
MyThread.Start;
end;
这两种方法都可以用来传递参数给线程,在线程的 Execute
方法中可以使用传递的参数进行操作。