In one base class, there's a protected procedure. When inheriting that class, I want to hide that procedure from being used from the outside. I tried overriding it from within the private and even strict private sections, but it can still be called from the outside. The Original class is not mine, so I can't change how TOriginal is defined.
Is it possible to hide this procedure in my inherited class? And how?
type
TOriginal = class(TObject)
protected
procedure SomeProc;
end;
TNew = class(TOriginal)
strict private
procedure SomeProc; override;
end;
SameProcin base class asvirtual; and then you redeclare it in inherited class and mark it asoverrideit means overriding; this means that if you createTNewand assign its instance toTOriginalvariable (var orig := TNew.Create()) and after that call orig.SomeProc then implementation of TNew.SomeProc will be called; if you will not mark it asoverridethen orig.SomeProc equalsTOriginal.SomeProcalso it is useless to lower method visibility because you always can upcast it and call – teran Feb 22 at 18:05