Delphi中Interface接口的使用方法


本文整理自网络,侵删。

 
unit Unit1;
interface
uses
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;
type
   //定义接口如果接口独立成一个文件,则在应用程序中和实现程序中都要引用该接口文件;
    ICar = interface (IInterface)
        ['{ED52E264-6683-11D7-B847-001060806215}']
        procedure drive;
    end;
 
//接口实现类1,一定要加入TinterfacedObject才能使用;
    TCar = class(TInterfacedObject,ICar)
    public
        procedure drive;
    end;
//接口实现类2,一定要加入TinterfacedObject才能使用;
    THouseCar = class(TInterfacedObject,ICar)
    public
        procedure drive;
    end;
 
 TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
 private
    { Private declarations }
 public
    { Public declarations }
    function getCar:ICar; //此处可用别的方式来实现获取ICAR,如放在DLL文件中;
 end;
 
var
 Form1: TForm1;
 
implementation
 
{$R *.dfm}
 
{ TCar }
procedure TCar.drive;
begin
 ShowMessage('TCar.drive');
end;
 
{ THouseCar }
procedure THouseCar.drive;
begin
   ShowMessage('THouseCar.drive');
end;
 
procedure TForm1.Button1Click(Sender: TObject);
var
 s:ICar;
begin
 s:= getCar;
 s.drive;
end;
 
function TForm1.getCar:ICar;
begin
   Result:=THouseCar.Create; //此处为整个实现的关键点;
//或Result:=TCar.Create;
end;
 
end.

相关阅读 >>

Delphi 检测进程是否存在

Delphi qq表情的实现

Delphi中实现调整图像的色阶的算法

Delphi的ttreeview类使用大全

Delphi获取flash文件的影片时长,原始尺寸,帧数等信息

截取程序的网络封包(Delphi hook api)

Delphi 获取文件夹下包括子目录所有文件

Delphi 对非活动窗口进行屏幕截图

Delphi测试数据库连接时间

一些最基本的函数 单元

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...