是否有可能在Delphi中对一个回调函数进行类型转换?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了是否有可能在Delphi中对一个回调函数进行类型转换?相关的知识,希望对你有一定的参考价值。

Delphi TList.Sort()方法需要一个类型为function (Item1, Item2: Pointer): Integer;的回调函数参数来比较列表项。

我想在回调函数中摆脱类型转换,并希望定义一个这样的回调函数:

function MyTypeListSortCompare( Item1, Item2 : tMyType ) : integer;
begin
   result := WideCompareStr(Item1.Name, Item2.Name);
end;

...
MyList.Sort(tListSortCompare(MyTypeListSortCompare));
...

但不幸的是,这会触发“无效的类型转换”编译器错误。

是否有可能在Delphi(2006)中正确地对类型指针进行类型转换?

答案

我通常做这样的事情:

function MyTypeListSortCompare( Item1, Item2 : Pointer ) : integer;
var
  LHS: TMyType absolute Item1;
  RHS: TMyType absolute Item2;
begin
  result := WideCompareStr(LHS.Name, RHS.Name);
end;
另一答案

可以进行类型转换,但需要在函数名前加上“@”:

var
   MyList : TList;
begin
   ...
   MyList.Sort(TListSortCompare(@MyTypeListSortCompare));
   ...
end;

正如评论中所指出的,当关闭类型检查指针时不需要类型转换,因此在这种情况下,这也有效:

MyList.Sort(@MyTypeListSortCompare);

以上是关于是否有可能在Delphi中对一个回调函数进行类型转换?的主要内容,如果未能解决你的问题,请参考以下文章

是否可以在 React Hooks 中对 useReducer 的调度进行回调?

在Delphi中对Tstringlist中的数字数据进行数字排序

Delphi 回调函数及property的使用

如何在 Delphi 2009 中对自定义组件进行鼠标平移

delphi关于stringgrid字符串转换的问题

是否有任何算法可以在某些模式中对数组进行分类?