使用尖括号(我见过有人使用 TList)
我看到人们声明他们的 TLists 像
MyList : TList<PSomeType>;
Whereafter 当他们创建它时,他们
MyList := TList<PSomeType>.Create;
这样做所以我认为通过这样做,他们不会必须在使用 MyList.Items[I] 时进行类型转换,就像:
ShowMessage( PSomeType(MyList.Items[I]).SomeTextProperty );
所以他们会这样做,
ShowMessage( MyList.Items[I].SomeTextProperty );
对吗?
如果是这样,那么为什么我不能让它在 Delphi 2010 中工作?我正在尝试这样做 - 将我的列表声明为
MyList : TList
但编译器说:
未声明的标识符:TList<>
我在那里做错了什么?
I see people declaring their TLists like
MyList : TList<PSomeType>;
Whereafter when they create it, they do
MyList := TList<PSomeType>.Create;
So I asume that by doing that, they won't have to typecast the MyList.Items[I] whenever they are using it, like:
ShowMessage( PSomeType(MyList.Items[I]).SomeTextProperty );
So instead they would just do
ShowMessage( MyList.Items[I].SomeTextProperty );
Is that correct?
If so, then why can't I get it to work in Delphi 2010? I am trying exactly that - Declaring my list as
MyList : TList<PSomeType>;
But the compiler says:
Undeclared Identifier: TList<>
What am I doing wrong there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些人使用的是通用列表。
TList
是 TList 的通用版本,它是在Generics.Collections
单元中声明的,而不是在Classes
中声明的,其中TList
是。将Generics.Collections
添加到您的使用列表中,您应该没问题。These people are using a generic list.
TList<T>
is a generic version of TList, and it's declared in the unitGenerics.Collections
, not inClasses
, whereTList
is. AddGenerics.Collections
to your uses list and you should be fine.