Wat is dynamic binding?

Showing Answers 1 - 4 of 4 Answers

suman

  • Jun 8th, 2006
 

               Dnamic binding but, method over riding.The method to which the control goes is known dynamically(at run time)

  Was this answer useful?  Yes

romal

  • Jun 15th, 2006
 

Dynamic binding example is wrapper class.

I think so

am i right

  Was this answer useful?  Yes

Sangram

  • Jul 13th, 2006
 

Dynamic binding is feature in which method calls are processed at runtime.

Type recognition of object is also comes under dynamic binding.

But after all it is binding of variables and methods at runtime.

  Was this answer useful?  Yes

ajaykjha

  • Oct 16th, 2006
 

Generally, java resolves calls to methods at run time. This is called late binding or dynamic binding. This occurs in the case of overriding. Sometimes a call to one can be resolved at compile time. This is called early binding. This occurs when we use final keyword in methods which prevents overriding.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions