- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
Advertisements