如何将字符串数组转换为字符串?

发布于 2024-11-30 18:18:59 字数 397 浏览 0 评论 0 原文

如何将字符串数组转换为字符串?或者还有什么想法吗?

我这样做是这样的:

var
    s:string;
    i:integer;
begin
    for i:=1 to 10000 do
    begin
        if (i mod 2)=0 then
            s:='a'+s
        else
            s:='b'+s;

    end;
end;

正如你所看到的,i将变成大数1000或10000或10000,所以这意味着我必须这样做10000次,我怎样才能在很短的时间内完成这个任务..使用数组?请给一个示例代码..

How can I convert array of string to string? Or any idea else?

I am doing it like this:

var
    s:string;
    i:integer;
begin
    for i:=1 to 10000 do
    begin
        if (i mod 2)=0 then
            s:='a'+s
        else
            s:='b'+s;

    end;
end;

And as you see i is going to large number 1000 or 10000 or 10000 so it means 10000 times I have to do this, how can I do this very short time..Using array? Please an example code..

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

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

发布评论

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

评论(1

ま昔日黯然 2024-12-07 18:18:59
SetLength(s, n);
for i := 1 to n do
  s[i] := ...

是您需要的习语。

您的代码很慢,因为它在每次迭代时执行内存分配和复制。这种预分配缓冲区的方法避免了这种情况。

SetLength(s, n);
for i := 1 to n do
  s[i] := ...

Is the idiom you need.

Your code is slow because it performs memory allocation and copying on every iteration. This approach of pre-allocating the buffer avoids that.

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