We have already mentioned overriding in the Inheritance and Abstraction/Interface sections. It is a replacing of a non-static method implemented in a parent class with the method of the same signatures in the child class. A default method of an interface also can be overridden in the interface that extends it.
Hiding is similar to overriding but applies only to static methods and static, as well as properties of the instance .
Overloading is creating several methods with the same name and different parameters (thus, different signatures) in the same class or interface.
In this section, we will discuss all these concepts and demonstrate how they work for classes and interfaces.