News

I've recently come across a use of multiple inheritance in some python code that shows me why this is multiple inheritance is a bad thing. It seems to break the OOP concept of encapsulation.
To quote Bjarne Stroustrup, "Multiple inheritance is like a parachute. Most of the time you don't need it, but when you do need it, you really need it." In the early days of C++, before templates ...