Java Made Clear: Difference Static binding Dynamic binding

Difference Static binding Dynamic binding Java, being an OOPs language, supports both static binding and dynamic binding. Coming to our topic, a class may have overloaded and overridden methods. When to call which method is decided (binded) sometimes by compiler and sometimes by JVM at runtime. Why this disparity? Why Java is designed like this? …

Java Made Clear: Difference Static binding Dynamic binding Read More »