Delphi TList <t>泛型</t>

时间:2014-10-26 23:48:29

标签: delphi generics tlist

有人可以向我解释这是否可行,或者我完全不了解这个Delphi功能。

我们说我有一个类,我创建了一些类,然后将它们添加到ObjectList中。通常我会这样做:

Type TMyClass = class(TObject)
  stuff: string;
..
end;

Var things: TObjectList;

things := TObjectList.Create;
things.Add(TMyClass.Create);

// now I want to access stuff, so I need to typecast the class
TMyClass(things[0]).stuff..

所以现在我的问题是,是否有可能以我可以做的方式声明列表.. thing [0] .stuff并且仍然可以访问常见的TObjectList功能,如.sort .indexof等。 ? (没有为此创建一个特殊的类来模拟objectlist)

1 个答案:

答案 0 :(得分:5)

您正在使用管理指针列表的TObjectList from System.Contnrs

你想要TObjectList from System.Generics.Collections。我知道,使用相同的名称可能会有点混乱。

Type TMyClass = class(TObject)
  stuff: string;
..
end;

Var things: TObjectList<TMyCLass>;

things := TObjectList<TMyCLass>.Create;
things.Add(TMyClass.Create);

things[0].stuff..