将 C# double 转换为 Pascal real
帮助将 C# 类型 double 转换为 Pascal real。问题是这些类型占用不同数量的字节(分别为 8 和 6)。
Help convert type double C# to Pascal real. The problem is that the types occupy different amount of bytes (8 and 6, respectively).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自 Delphi 3 或 4 以来,Real48 已经是一个遗留类型。在 Delphi 代码中尽可能多地使用 double。
Real48 is already a legacy type since Delphi 3 or 4. Use double as much as possible in your delphi code.