gpt4 book ai didi

arrays - 将项目添加到数组的其他方法

转载 作者:行者123 更新时间:2023-12-03 15:16:26 25 4
gpt4 key购买 nike

有没有办法使用类似的东西填充Delphi数组

array = array('this','that','and uh'); // php
array = ['this','that','and uh']; // javascript

或者如果没有,也许你可以给我一个关于我想要做什么的提示:
我有这个 TButton 数组。我正在向数组添加一些按钮,这些按钮应该对用户可见。使用数组的这种方法,我可以轻松地使用循环来设置它们的可见性属性。

最佳答案

通过动态数组和适当的现代版本的 Delphi,您可以使用 array constructor .

myArray := TArray<string>.Create('this', 'that', 'and uh');

如果你想创建一个按钮数组,那么可以这样写:

buttons := TArray<TButton>.Create(btn1, btn2, btn3);

然后迭代按钮数组:

for button in buttons do
DoSomething(button);

关于arrays - 将项目添加到数组的其他方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9980919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com