What is static binding in Java?


In static binding, the method call is bonded with the method body at compile time. This is also known as early binding. This is done using static, private and, final methods.

Example

class Super {
   public static void sample() {
      System.out.println("This is the method of super class");
   }
}

Public class Sub extends Super {
   Public static void sample() {
      System.out.println("This is the method of sub class");
   }

   Public static void main(String args[]) {
      Sub.sample()
   }
}

Output

This is the method of sub class

Sai Subramanyam
Sai Subramanyam

Passionate, Curious and Enthusiastic.

Updated on: 30-Jul-2019

417 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements