码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi 接口(5)-接口与类型转换

时间:2018-10-27 21:05:24      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:end   接口   span   var   类型转换   code   ati   inter   creat   

//接口与类型转换

type
IFoot: interface
[|0000-0000-0000-0000|]
end;

IBall = interface
[|0000-0000-0000-0001|]
end;

TFootball = calss(TinterfacedObject,IFoot,IBall)
end;

implementation

procedure Test(FB: TFootball)
var 
    F:IFoot
begin
  F := FB;//合法,因为FB支持IFoot
end;

var
    FB: TFootball;
    F: IFoot;
    B: IBall;
begin
  FB := TFootBall.Create;
  F := FB;//合法,因为FB支持IFoot
  B := F as IBall;//把F(IFoot)转为IBall
end;

 

Delphi 接口(5)-接口与类型转换

标签:end   接口   span   var   类型转换   code   ati   inter   creat   

原文地址:https://www.cnblogs.com/YiShen/p/9863007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!