Delphi 接口(4) 互相依赖的接口
2021-07-04 04:29
标签:icon integer delphi ace div get 函数返回 phi 函数 Delphi 接口(4) 互相依赖的接口 标签:icon integer delphi ace div get 函数返回 phi 函数 原文地址:https://www.cnblogs.com/YiShen/p/9862800.htmltype
IControl = interface; //IControl的Forward声明
IWindow = interface
[‘0000-00000-00-00-0000-000‘]
function GetContor(index: integer):IControl;
//如果没有IControl的Forward声明,GetControl函数返回IControl类型就是非法的;
end;
IControl = interface //IControl的实际声明
[‘0000-00000-00-00-0000-002‘]
function GetWindow:IWindow;
end;
下一篇:Delphi 接口(3)