Early bindingand Late binding in C++
What do you mean by late binding? What do you mean by early binding?
- 4836 Views
- 1 Answers
1 Answers
-
-
- 02 Apr
- 0 Comment
-
- how c plus plus is different than java ?
- What are the basic concepts of oops in C++?
- How many times will this loop execute?
- Which software is used for C and C++?
- Accessing private and protected members
- What is C++ programming language used for?
- When we already have C language then why C++?
- Most suitable way for returning the logical errors
- What is C++? How one can go for C++ in engineering?
- Interview questions for C++ language
Practice Mock Test
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