![]() | ||
Method overriding, in object oriented programming, is a language feature that allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its superclasses or parent classes. The implementation in the subclass overrides (replaces) the implementation in the superclass by providing a method that has same name, same parameters or signature, and same return type as the method in the parent class. The version of a method that is executed will be determined by the object that is used to invoke it. If an object of a parent class is used to invoke the method, then the version in the parent class will be executed, but if an object of the subclass is used to invoke the method, then the version in the child class will be executed. Some languages allow a programmer to prevent a method from being overridden.
Contents
Ada
Ada provides method overriding by default. To favor early error detection (e.g. a misspelling), it is possible to specify when a method is expected to be actually overriding, or not. That will be checked by the compiler.
C#
C# does support method overriding, but only if explicitly requested using the modifiers override
and virtual
.
When overriding one method with another, the signatures of the two methods must be identical (and with same visibility). In C#, class methods, indexers, properties and events can all be overridden.
Non-virtual or static methods cannot be overridden. The overridden base method must be virtual, abstract, or override.
In addition to the modifiers that are used for method overriding, C# allows the hiding of an inherited property or method. This is done using the same signature of a property or method but adding the modifier new
in front of it.
In the above example, hiding causes the following:
C++
In C++, the name of the parent or base class is used followed by the scope resolution operator to override functions. For example, the following code presents two classes, the base class TRectangle
, and the derived class TBox
. TBox
overrides the TRectangle
class's print()
method, so as also to print its height.
The method print()
in class TBox
, by invoking the parent version of method print()
, is also able to output the private variables length
and width
of the base class. Otherwise, these variables are inaccessible to TBox
.
The following statements will instantiate objects of type TRectangle
and TBox
, and call their respective print()
methods:
In C++11, similar to Java, a method that is declared final
in the super class cannot be overridden; also, a method can be declared override
to make the compiler check that it overrides a method in the base class.
Delphi
In Delphi, method overriding is done with the directive override, but only if a method was marked with the dynamic or virtual directives.
The inherited reserved word must be called when you want to call super-class behavior
Eiffel
In Eiffel, feature redefinition is analogous to method overriding in C++ and Java. Redefinition is one of three forms of feature adaptation classified as redeclaration. Redeclaration also covers effecting, in which an implementation is provided for a feature which was deferred (abstract) in the parent class, and undefinition, in which a feature that was effective (concrete) in the parent becomes deferred again in the heir class. When a feature is redefined, the feature name is kept by the heir class, but properties of the feature such as its signature, contract (respecting restrictions for preconditions and postconditions), and/or implementation will be different in the heir. If the original feature in the parent class, called the heir feature's precursor, is effective, then the redefined feature in the heir will be effective. If the precursor is deferred, the feature in the heir will be deferred.
The intent to redefine a feature, as message
in the example below, must be explicitly declared in the inherit
clause of the heir class.
In class ADVICE
the feature message
is given an implementation that differs from that of its precursor in class THOUGHT
.
Consider a class which uses instances for both THOUGHT
and ADVICE
:
When instantiated, class APPLICATION
produces the following output:
Within a redefined feature, access to the feature's precursor can be gained by using the language keyword Precursor
. Assume the implementation of {ADVICE}.message
is altered as follows:
Invocation of the feature now includes the execution of {THOUGHT}.message
, and produces the following output:
Java
In Java, when a subclass contains a method that overrides a method of the superclass, it can also invoke the superclass method by using the keyword super
(Lewis & Loftus, 2006). Example:
Class Thought
represents the superclass and implements a method call message()
. The subclass called Advice
inherits every method that could be in the Thought
class. However, class Advice
overrides the method message()
, replacing its functionality from Thought
.
The super
reference can be
There are methods that a subclass cannot override. For example, in Java, a method that is declared final in the super class cannot be overridden. Methods that are declared private or static cannot be overridden either because they are implicitly final. It is also impossible for a class that is declared final to become a super class.
Python
In Python, when a subclass contains a method that overrides a method of the superclass, you can also call the superclass method by calling super(Subclass, self).method
instead of self.method
. Example:
Ruby
In Ruby when a subclass contains a method that overrides a method of the superclass, you can also call the superclass method by calling super in that overridden method. You can use alias if you would like to keep the overridden method available outside of the overriding method as shown with 'super_message' below.
Example: