如何初始化 TList使用 Delphi 一步完成?

发布于 2024-11-02 19:55:37 字数 252 浏览 2 评论 0原文

我确信这是一个简单的问题,但我无法让它运行:

var
  FMyList: TList<String>;
begin
  FMyList := TList<String>.Create(?????);
end;

如何插入而不是 ??????插入这 3 个字符串:

“一”
“二”
“三”

谢谢..

I am sure this is a easy question, but I cannot get it to run:

var
  FMyList: TList<String>;
begin
  FMyList := TList<String>.Create(?????);
end;

How to insert instead of ????? to insert this 3 strings:

'one'
'two'
'three'

Thanks..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

向日葵 2024-11-09 19:55:37

不是单行,而是两行:

FMyList := TList<String>.Create;
FMyList.AddRange(['one', 'two', 'three']);

编辑:当然,您可以将其与大卫的方法结合起来。

Not a one liner, but a two liner:

FMyList := TList<String>.Create;
FMyList.AddRange(['one', 'two', 'three']);

Edit: Of course you can combine it with David's approach.

迟到的我 2024-11-09 19:55:37

没有单一的方法可以做到这一点。您可以编写自己的构造函数来执行此操作:

constructor TMyList<T>.Create(const Values: array of T);
var
  Value: T;
begin
  inherited Create;
  for Value in Values do
    Add(Value);
end;

然后您可以编写:

FList := TMyList<string>.Create(['one', 'two', 'three']);

Update

正如 Uwe 在他的回答中正确指出的那样,我提供的代码应该使用 AddRange() 方法:

constructor TMyList<T>.Create(const Values: array of T);
begin
  inherited Create;
  AddRange(Values);
end;

There is no single method to do this. You could write your own constructor to do this as so:

constructor TMyList<T>.Create(const Values: array of T);
var
  Value: T;
begin
  inherited Create;
  for Value in Values do
    Add(Value);
end;

Then you could write:

FList := TMyList<string>.Create(['one', 'two', 'three']);

Update

As Uwe correctly points out in his answer, the code I present should use the AddRange() method:

constructor TMyList<T>.Create(const Values: array of T);
begin
  inherited Create;
  AddRange(Values);
end;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文