override
The override is a polymorphism keyword used for overriding the behavior of a method derived from base classes.
Syntax
virtual ReturnType fuBar() override { /* method body */ }
The override is a polymorphism keyword used for overriding the behavior of a method derived from base classes.
virtual ReturnType fuBar() override { /* method body */ }