gpt4 book ai didi

delphi - Delphi 中具有不同参数类型的函数

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

如何编写两个具有相同名称但参数类型不同的函数,如下所示:

  public
{ Public declarations }
function MsgW(const Msg:String):Integer;
function MsgW(const Msg:String;title:String):Integer;


function MsgW(const Msg:String;title:String):Integer;
Begin
Result := MessageboxW(0,Pchar(Msg),Pchar(title),MB_OK);
End;

function MsgW(const Msg:String):Integer;
Begin
Result := MessageboxW(0,Pchar(Msg),'MessageBoxW',MB_OK);
End;

最佳答案

使用重载指令

function MsgW(const Msg:String):Integer; overload;
function MsgW(const Msg:String;title:String):Integer; overload;

Overloading Methods

关于delphi - Delphi 中具有不同参数类型的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31144808/

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