gpt4 book ai didi

delphi - Delphi 中取消引用和分配指针的语法

转载 作者:行者123 更新时间:2023-12-03 15:44:32 24 4
gpt4 key购买 nike

需要实现一个接口(interface)方法,其中传递一个指针,并且期望取消引用该指针并为其分配一个 OleVariant。执行此操作的语法是什么?

// Code I have no access to change
function GetEntry: string;
var
value: OleVariant;
begin
Entry(@value);
Result := VarToStr(value);
end;

// My code
procedure Entry(Value: Pointer);
begin
Value^ := ??? // Not sure whats the syntax here in order to assign an OleVariant
end

最佳答案

您可以使用如下所示的值转换:

OleVariant(Value^) := ...

或者,您可以转换指针:

POleVariant(Value)^ := ...

关于delphi - Delphi 中取消引用和分配指针的语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51243441/

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