16,747
社区成员




type
StatRun = record //定义一个结构
Flag: Boolean ;
time: DWORD ; //由GetTickCount得到.
end;
type
TProtectThread = class(TThread)
private
protected
procedure Execute ; override ;
public
RunPLth, //A线程写这个变量
RunTeamth, //B线程写这个变量
Runsend, //C线程写这个变量
RunHPMPth: StatRun ; //D线程写这个变量
end;