具有变体数组的格式?
如何将 Format
与 Variant
数组一起使用?我有一个例外,应该单独存储消息和参数,以便可以在顶层完成翻译:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.