使用尖括号(我见过有人使用 TList

发布于 2024-10-31 16:27:59 字数 665 浏览 4 评论 0原文

我看到人们声明他们的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赤濁 2024-11-07 16:27:59

这些人使用的是通用列表。 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 unit Generics.Collections, not in Classes, where TList is. Add Generics.Collections to your uses list and you should be fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文