Early bindingand Late binding in C++
What do you mean by late binding? What do you mean by early binding?
- 4845 Views
- 1 Answers
1 Answers
-
-
- 02 Apr
- 0 Comment
-
- What are the topics in C++? Explain your answer
- Is Python better than C++? Explain your answer
- Most suitable way for returning the logical errors
- how c plus plus is different than java ?
- How can I practice the questions of C Plus Plus Programming? Where to find study material?
- Can someone please update me with the important exam dates of C Plus Plus Programming Exam?
- Accessing private and protected members
- Reallocation of pointers in C++
- When we already have C language then why C++?
- What are the basic concepts of oops in C++?
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