What is multiple inheritance(virtual inheritance)? What are its advantages and disadvantages?
By on May 4, 2007 in C/C++ Interview Questions
Multiple Inheritance is the process whereby a child can be derived from more than one parent class. The advantage of multiple inheritance is that it allows a class to inherit the functionality of more than one base class thus allowing for modeling of complex relationships. The disadvantage of multiple inheritance is that it can lead [...]


