Static and Dynamic Binding in Java with Example
What is Binding in Java? The connecting (linking) between a method call and method body/definition is called binding in java. Look at the below figure in which we have defined a class X. It has two methods m1() and m2(). The x.m1(); (method call) is linked with m1() method whereas, … Read more