English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

4 answers

Binding :
Binding means asociating the values to symbols in the program code. There are two type compile time ( Static !) and runtime (synamic)

1. Compile time bindings are done at compile time, thus all the symbols are resolved at compile time, This increases the compile time thugh u can see some run time performance increases ( generally its the load time). Here things are static and the code generated by compiler is ready to load at a relative memory area and the start executing.

2. runtime binding or dynamic binding, where the bindings are delayed to load time or run time. the symbols will be resolved at load time or run time so that the extern declarations and other external linking can be allowed. This may add small extra time in execution of the progrm ( May be loading ).



regards
decoy

2006-07-22 04:39:19 · answer #1 · answered by decoy77 1 · 0 0

Runtime Binding

2016-12-15 15:47:55 · answer #2 · answered by Anonymous · 0 0

compile time binding is when datatypes are checked when the code is compiled

runtime binding is when datatypes are not checked until the compiled code actually runs and therefore requires the programmer to be more formal and strict in variable assignment

2006-07-22 04:34:20 · answer #3 · answered by Ivanhoe Fats 6 · 0 0

Compile time is breaking a high level language down into machine language, run time is executing the machine language and output.

2006-07-22 04:32:51 · answer #4 · answered by helixburger 6 · 0 0

fedest.com, questions and answers