Javatpoint Logo
Javatpoint Logo

Method Hiding in Java

In this section, we will discuss what is method hiding in Java, method hiding factors (MHF), and the differences between method hiding and method overriding. Also, implement the method hiding concept in a Java program.

To understand the method hiding concept in Java, first, we will understand the method overriding. Because the method hiding concept is very similar to the method overriding.

What is method overriding?

Method overriding means subclass had defined an instance method with the same signature and return type as the instance method in the superclass. In such a case, method of the superclass is overridden (replaced) by the subclass.

Methods in Static Context

Static methods are bonded during compile time using types of reference variables not object. We know that static methods are accessed by using the class name rather than an object. Note that the static method can be overloaded, but cannot be overridden in Java.

What is method hiding?

Method hiding can be defined as, "if a subclass defines a static method with the same signature as a static method in the super class, in such a case, the method in the subclass hides the one in the superclass." The mechanism is known as method hiding. It happens because static methods are resolved at compile time.

Method Hiding Factors (MHF)

  • The method hiding factors measure the invisibilities of methods in classes.
  • An attribute is called visible if it can be accessed by another class or object. An attribute should be hidden within a class. They can be kept from being accessed by other objects by being declared private.
  • Ideally, the method hiding factor must have a large value.
  • The MHF can be calculated by using the following formula:
Method Hiding in Java

Example of Method Hiding in Java

Sample.java

Output:

Method-1 of the Demo class is executed.
Method-1 of the Demo class is executed.
Method-2 of the Demo class is executed.
Method-2 of the Sample class is executed.

We observe that the method of the superclass is hidden by the subclass.

Method Hiding Vs. Method Overriding

Hiding a static method of a superclass looks like overriding an instance method of a superclass. The main difference can be seen at runtime in the following scenario.

  • When we override an instance method, we get the benefit of run-time polymorphism.
  • When we override a static method, we do not get the benefit of run-time polymorphism.
Method Hiding Method Overriding
Both methods must be static. Both methods must be non-static.
Method resolution takes care by the compiler based on the reference type. Method resolution takes care by JVM based on runtime object.
It is considered as compile-time polymorphism or static polymorphism or early binding. It is considered as runtime polymorphism or dynamic polymorphism or late binding.

Let's understand the method handing and overriding practically.

The above code snippet does not perform the method hiding because the methods of both the classes are non-static, hence they perform method overriding.

In the above code snippet, to achieve the method hiding, we need to make the methods static.

The following table describes what happens when we define a method with the same signature as in superclass.

Defining a Method with the Same Signature as a Superclass's Method
Superclass Instance Method Superclass Static Method
Subclass Instance Method Overrides the method Generates a compile-time error
Subclass Static Method Generates a compile-time error Hides the method

Note: In a subclass, we can overload the methods inherited from the superclass. The overloaded methods neither hide nor override the superclass instance methods. These are the new methods, that are unique to the subclass.


Next TopicJava Tuple





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA