有时这个功能会锁定我的程序,并且在我关闭它之前它会冻结。这里有什么问题?
function del_from_list(id:string):boolean;
var i : integer;
begin
Result := True;
try
with global_list.LockList do
begin
for i:=0 to Count-1 do
begin
if Tthread_list(Items[i]).id = id then
begin
Delete(i);
break;
end;
end;
end;
finally
global_list.UnlockList;
end;
end;
班上
Tthread_list = class
public
id : string;
constructor Create(const id: string);
end;
我正在像这样添加到列表中:
global_list.Add(Tthread_list.Create('xxx'));
全局列表是一个全局变量
var global_list : TThreadList = nil;