delphi – 如何在重写的虚函数中调用`Inherited`祖先方法?

前端之家收集整理的这篇文章主要介绍了delphi – 如何在重写的虚函数中调用`Inherited`祖先方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这有效:
constructor TMyObj.Create;
begin
 inherited;
end;

为什么这也不起作用?

function TMyObjEx.Import(CONST FileName: string; CONST x,y,z: Integer): string;
begin
 result:= inherited; // Import(FileName,x,z);  <--- Compiler says: "incompatible types"
 //do other stuff here
end;

TMyObjEx的声明是这样的:

TYPE

TMyObj = class(TChObj)
      private
      protected
      public
       function Import (CONST FileName: string; CONST x,z: Integer): string; virtual;     
     end;

TMyObjEx= class(TMyObj)
          private
          protected
          public
           function Import(CONST FileName: string; CONST x,z: Integer): string; override;   
         end;

解决方法

这是正确的答案.

正如您在上面提到的那样,正确的方法是:

function TMyObjEx.Import(CONST FileName: string; CONST x,z: Integer): string;
begin
 result:= inherited Import(FileName,z); 
 //do other stuff here
end;

语言不支持您希望这样做的方式.

所以最终回答你的问题“为什么这不起作用?”是因为这不是语言的设计方式.

原文链接:https://www.f2er.com/delphi/102456.html

猜你在找的Delphi相关文章