C++
Programming and Technical
Programming
Definition
What do you mean by virtual methods?
Read Solution (Total 1)
-
- Virtual Function is a function in base class, which is overrided in the derived class, and which tells the compiler to perform Late Binding on this function. compiler determines the type of object at runtime, and then binds the function call. Late Binding is also called Dynamic Binding or Runtime Binding.
- 10 years agoHelpfull: Yes(1) No(0)
C++ Other Question