在 D2007 中连接字符串时出现访问冲突的原因是什么?

发布于 2024-08-21 15:10:57 字数 493 浏览 4 评论 0原文

我有一个接受 2 个字符串参数的过程,其中一个有默认值。在该过程中,我想连接一个和另一个以及一些文字以形成一个更大的字符串。不知何故,我得到了一个 AV...有什么想法吗?

代码是这样的

{$WRITEABLECONST ON}
constructor MyClass.Create(s1: string; s2: string = GlobalConstant);
var s3: string;
begin
    ....
    if (s2 = '') then s2 := GlobalConstant + ' (' + s1 + ')';      // AV here
    ....
end;

如果我将 GlobalConstant + ' (' + s1 + ') 分配给 s3,然后将 s3 分配给 s2 AV 消失了。为什么?直接写入字符串参数有什么问题吗?

I have a procedure that accepts 2 string parameters, one of them has a default value. Inside the procedure, I want to concatenate one and the other and some literals to form one larger string. Somehow, I'm getting an AV... any ideas?

code is something like this

{$WRITEABLECONST ON}
constructor MyClass.Create(s1: string; s2: string = GlobalConstant);
var s3: string;
begin
    ....
    if (s2 = '') then s2 := GlobalConstant + ' (' + s1 + ')';      // AV here
    ....
end;

If I assign GlobalConstant + ' (' + s1 + ') to s3, then assign s3 to s2 the AV disappears. Why? What is wrong with writing to the string parameter directly?

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

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

发布评论

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

评论(1

药祭#氼 2024-08-28 15:10:57

您的代码中的其他内容是错误的,间接导致该位置发生访问冲突(损坏)。将 FastMM 与 FullDebugMode 来弄清楚它是什么,以及如何解决它。

Something else in your code is wrong, indirectly resulting in an Access Violation in that location (corruption). Use FastMM with FullDebugMode on to figure out what it is, and how to solve it.

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