记录文件错误
我正在使用 Delphi 2007,我正在尝试制作记录类型文件。在 Delphi 7 中对我来说没有任何问题。
Type
Kompiuteris = record
...
end;
Failas = file of Kompiuteris;
但在 Delphi 2007 中我遇到了问题。错误表明:类型“Kompiuteris”需要最终确定。那么,到底出了什么问题呢?
I am using Delphi 2007 and I am trying to make record type file. In Delphi 7 there were no problems for me.
Type
Kompiuteris = record
...
end;
Failas = file of Kompiuteris;
But in Delphi 2007 I get problem. Error says that: Type "Kompiuteris" needs finalization. So, what is wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自文档:
From the documentation:
您需要设置记录字符串字段大小,
例如:
如果记录中有名为 name 的字段
You need to set record string fields sizing
as example :
if you have field in record called name