2016 - 2024

感恩一路有你

delphi语言教程 delphi中接口的定义和使用?

浏览量:1229 时间:2021-03-17 17:10:52 作者:admin

delphi中接口的定义和使用?

Define interface idemotypeidemo=interface function a(I:integer):integerend接口中的方法不能有方法体,只能有声明。然后可以使用接口对象或继承接口typetdemo=class(tcomponent,IDEO)publicfunctiona(I:integer):integerend,然后构造functiontdemo。A(I:integer):integerbeginresult:=I*2end表示类中方法的方法体。也可以将对象转换为接口,例如:变量impl:IDemoTImpl:tDemoBeginTempl:=TDemo.创建(nil)IImpl:=IImpl(TImpl)end

如果您说“Delphi接口标志”,它是指接口的唯一标识号。方法如下:

1。在delphiide中,按Ctrl-Shift-g键为接口生成新的guid。

2. 可以使用函数createguid生成guid。示例代码如下:函数getguid:String var LTEP:tguid begin createguid(LTEP)result:=guidtostring(LTEP)end

delphi语言教程 delphi编辑界面 delphi 接口

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。