Computer Science, asked by surman3365, 11 months ago

What is static binding in Java?

Answers

Answered by muskan0016
0

Static binding in Java occurs during compile time while dynamic binding occurs during runtime. ... Overloaded methods are bonded using static binding while overridden methods are bonded using dynamic binding at runtime.

Answered by Anonymous
2

In Java static binding refers to the execution of a program where type of object is determined/known at compile time i.e when compiler executes the code it know the type of object or class to which object belongs. While in case of dynamic binding the type of object is determined at runtime.

hope it helps you....

Similar questions