具有变体数组的格式?

发布于 2024-12-22 08:45:40 字数 363 浏览 4 评论 0原文

如何将 FormatVariant 数组一起使用?我有一个例外,应该单独存储消息和参数,以便可以在顶层完成翻译:

TMyException = class (Exception)
private
  FParams : array of Variant;
public
  constructor Create (const Msg : String);
  constructor CreateFmt (const Msg : String; Args : array of Variant);
end;

现在我以后如何将 Format 与存储的值一起使用?

How can I use Format with an array of Variant? I have an exception that should store the message and the parameters separately so that translation can be done at the top-level:

TMyException = class (Exception)
private
  FParams : array of Variant;
public
  constructor Create (const Msg : String);
  constructor CreateFmt (const Msg : String; Args : array of Variant);
end;

Now how can I later use Format with the stored values?

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

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

发布评论

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

评论(1

陌上青苔 2024-12-29 08:45:40

Format 等使用的 const 数组实际上是作为 TVarRec< 的开放数组实现的/a>.虽然表面上与变体相似,但 TVarRec 是一个不同的野兽。我推荐 Rudy Velthuis 的优秀文章,解释了复制和操作数组所需的一些细节TVarRec 的。

Array of const, as used by Format and similar, is actually implemented as an open array of TVarRec. Whilst superficially similar to variant, TVarRec is a different beast. I recommend Rudy Velthuis's excellent article explaining some of the detail needed in order to copy and manipulate arrays of TVarRec.

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