Delphi 接口
Posted yishen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi 接口相关的知识,希望对你有一定的参考价值。
对SayHello过程的改进
代码如下:
procedure TForm2.SayHello(AMan: TMan); var G: IGreetable; begin edt_Name.Text := AMan.Name; edt_language.Text := AMan.Language; edt_SkinColor.Text := AMan.SkinColor; G := AMan as IGreetable; if G <> nil then begin ShowMessage(G.SayHello); end; end;
以上是关于Delphi 接口的主要内容,如果未能解决你的问题,请参考以下文章
使用delphi+intraweb进行微信开发1~4代码示例