Early bindingand Late binding in C++
What do you mean by late binding? What do you mean by early binding?
- 5278 दृश्य
- 1 उत्तर
1 उत्तर
-
-
- 02 अप्रैल
- 0 टिप्पणी
-
- What is difference between C and C++ ?
- Which software is used for C and C++?
- Interview questions for C++ language
- how c plus plus is different than java ?
- Online test for C plus plus language
- What is C++? How one can go for C++ in engineering?
- When we already have C language then why C++?
- Reallocation of pointers in C++
- Can someone please update me with the important exam dates of C Plus Plus Programming Exam?
- Where to find internship for C plus plus ?
मॉक परीक्षण अभ्यास के लिए
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