if Server is TForm2Server then TForm2Server(Server).Function2else if Server is TForm3Server then TForm3Server(Server).Function2;
但它可以变成一个无限的if-else子句!所以我认为像多重继承这样的东西可能会有所帮助.我声明了一个名为IForm4Server的接口,它包含Function2.因此TForm2Server和TForm3Server继承自TAncestorServer和IForm4Server.我认为这样的事情可行:
If Server is IForm4Server then IForm4Server(Server).Function2;
但是编译器不这么认为,它说它不是有效的类型转换,因为TAncestorServer不是IForm4Server,这是绝对正确的. TForm1Server不知道实现Function2,必须留空.我也不能将TForm4.Server声明为IForm4Server,因为Function1代表了大量的方法和属性,但是我仍然无法将类型转换为IForm4Server到TAncestorServer.
作为一个解决方案,我可以在TForm4中定义两个不同的属性,如GeneralServer:TAncestorServer和Form4Server:IForm4Server,然后为它们分配相同的TForm2Server或TForm3Server实例,但我感觉不太好.我该怎么做?它有什么标准模式吗?
解决方法 实现一个或多个接口是正确的方法,但看起来你对正确的语法有点困惑,并且没有接口经验.基本的东西是:
>对于任意数量的类,您都有一个共同的祖先类(或表单).祖先声明了类以某种方式专门化的虚方法.
>使用任意数量的方法声明接口.不要忘记在界面中添加GUID.
>扩展表单声明以实现声明的接口,将接口添加到类声明并添加声明的方法.
>你现在可以:
>使用祖先类多态调用任何虚方法
>询问任何表单是否实现了接口,如果是,请检索对它的接口引用并调用任何接口方法.所有这些都可以使用supports功能完成.
我做了一个我能想到的最简单的例子,使用视觉继承表单和简单的界面.该示例的摘录如下:
共同的祖先类:
type TServerForm = class(TForm) private { Private declarations } public { Public declarations } procedure Method1; virtual; end;
界面:
type IMyInterface = interface ['{B7102C7E-F7F6-492A-982A-4C55CB1065B7}'] procedure Method2; end;
孩子形成:
这个继承自TServerForm并实现接口
type TServerForm3 = class(TServerForm,IMyInterface) public procedure Method1; overrIDe; procedure Method2; end;
这个只是继承自TServerForm
type TServerForm4 = class(TServerForm) public procedure Method1; overrIDe; end;
这个直接从TForm继承并实现接口
type TNoServerForm = class(TForm,IMyInterface) public procedure Method2; end;
所有表单都是自动创建的,然后,我有这个代码来调用另一个表单上的几个OnClick for按钮上的方法(应用程序示例的主要形式):
要基于多态调用虚方法:
procedure TForm6.button1Click(Sender: TObject);var I: Integer;begin for I := 0 to Screen.FormCount - 1 do begin if (Screen.Forms[I] is TServerForm) then TServerForm(Screen.Forms[I]).Method1; end;end;
要根据接口的实现调用该方法:
procedure TForm6.button2Click(Sender: TObject);var I: Integer; Intf: IMyInterface;begin for I := 0 to Screen.FormCount - 1 do begin if Supports(Screen.Forms[I],IMyInterface,Intf) then Intf.Method2; end;end;
方法只显示消息,一切正常:
procedure TServerForm3.Method2;begin ShowMessage(Classname + '.Method2');end;总结
以上是内存溢出为你收集整理的delphi – 调用从接口和另一个祖先继承的类的方法全部内容,希望文章能够帮你解决delphi – 调用从接口和另一个祖先继承的类的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)