What is the use of “overrides” and “overridable” keywords


Question. What is the use of “overrides” and “overridable” keywords

Overridable is used in parent class to indicate that a method can be overridden. Overrides
is used in the child class to indicate that you are overriding a method

Comments