DEV Community

Discussion on: What is virtual inheritance in C++ and when should you use it?

Collapse
 
sandordargo profile image
Sandor Dargo

Indeed, as said, in most of the languages huge and complex applications can be implemented without the need for virtual inheritance. I think it's worth to know about it and probably best to avoid it in your design.

Collapse
 
pgradot profile image
Pierre Gradot

Have you ever used it in real-life code?