HomeDelphiDelphi Error – E2167 Abstract methods must be virtual or dynamic

Delphi Error – E2167 Abstract methods must be virtual or dynamic

Delphi Compiler Error

E2167 Abstract methods must be virtual or dynamic

Reason for the Error & Solution

When declaring an abstract method in a base class, it must either be of regular virtual or dynamic virtual type.

program Produce;

  type
    Base = class
      procedure DaliVision; abstract;
      procedure TellyVision; abstract;
    end;

begin
end.

The declaration above is in error because abstract methods must either be virtual or dynamic.

program Solve;

  type
    Base = class
      procedure DaliVision; virtual; abstract;
      procedure TellyVision; dynamic; abstract;
    end;

begin
end.

It is possible to remove this error by either specifying ‘virtual’ or ‘dynamic’, whichever is most appropriate for your application.

Share:

Leave a Reply

You May Also Like

Delphi Compiler Error X2421 Imported identifier ‘%s’ conflicts with ‘%s’ in ‘%s’ Reason for the Error & Solution This occurs...
Delphi Compiler Error X2367 Case of property accessor method %s.%s should be %s.%s Reason for the Error & Solution No...
Delphi Compiler Error X2269 Overriding virtual method ‘%s.%s’ has lower visibility (%s) than base class ‘%s’ (%s) Reason for the...