Delphi——将整数转换为类型化指针?
我在使用 Delphi 语法时遇到一些问题。
我有一条记录:
type
TMyType = record
....
end;
和一个过程:
procedure Foo(bar:Integer);
var
ptr : ^TMyType
begin
ptr := bar //how to do this?
end;
如何正确地将整数转换为 TMyType 的指针?
I'm having some trouble with the syntax of Delphi.
I have a record:
type
TMyType = record
....
end;
and a procedure:
procedure Foo(bar:Integer);
var
ptr : ^TMyType
begin
ptr := bar //how to do this?
end;
How do I properly cast an integer to a pointer of TMyType?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样:
Like this:
您必须使用新类型显式地强制转换:
或者
You must cast it explicitely with the new type:
or