【发布时间】:2016-01-21 01:47:19
【问题描述】:
我想在 Delphi 中使用 multi TList。例如:
var
temp1List : TList;
temp2List : TList;
begin
temp1List := TList.Create;
temp2List := TList.Create;
temp1List.add(temp2List);
end;
我认为这是不正确的,因为TList 接受参数作为Pointer 值。
有没有办法使用多个TList?
【问题讨论】: