What is the difference between static binding and dynamic binding?

This question is related to Oracle Interview

Showing Answers 1 - 5 of 5 Answers

Jeetu

  • Jun 14th, 2006
 

Static binding is nothing but Late binding and vise versa.

  Was this answer useful?  Yes

SrinivasaRao.T

  • Jun 16th, 2006
 

Static Binding: if the binding is occur at compile time of our source code is called static binding

Dynamic Binding: if the binding is occur when interpreter our class fine, then that binding is called Dynamic Binding.

  Was this answer useful?  Yes

kumpsath

  • Sep 19th, 2009
 

1. Statis Binding : Initialize the variable like, private static HashMap map=new HashMap();

2. Dynamic Binding: Initialize the variable like, private HashMap map; and somewhere in the method do map=new HashMap();

Please let me kknow if any change is there...!

  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