gpt4 book ai didi

Delphi——将整数转换为类型指针?

转载 作者:行者123 更新时间:2023-12-03 18:08:26 25 4
gpt4 key购买 nike

我在使用 Delphi 语法时遇到了一些问题。

我有一个记录:

type
TMyType = record
....
end;

和一个过程:

procedure Foo(bar:Integer);
var
ptr : ^TMyType
begin
ptr := bar //how to do this?
end;

如何正确地将整数转换为 TMyType 的指针?

最佳答案

像这样:

type
PMyType = ^TMyType;

procedure Foo(bar: Integer);
var
ptr: PMyType;
begin
ptr := PMyType(bar);
end;

关于Delphi——将整数转换为类型指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7810559/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com