Early bindingand Late binding in C++
What do you mean by late binding? What do you mean by early binding?
- 4838 दृश्य
- 1 उत्तर
1 उत्तर
-
-
- 02 अप्रैल
- 0 टिप्पणी
-
- Reallocation of pointers in C++
- What are the five basic elements of a C++ program?
- Most suitable way for returning the logical errors
- How many times will this loop execute?
- What is C++ programming language used for?
- Which is the best software for C++ programming?
- Interview questions for C++ language
- What is difference between C and C++ ?
- Is Python better than C++? Explain your answer
- Which software is used for C and C++?
मॉक परीक्षण अभ्यास के लिए
c plus plus programming
Early Binding : As the name indicates, compiler (or linker) directly associate an address to the function call. It replaces the call with a machine language instruction that tells the mainframe to leap to the address of the function.br /Late Binding : the compiler adds code that identifies the kind of object at runtime then matches the call with the right function definition