[Solved] c++ Multiple inheritance from 2 functions, while one of them is pure virtual [closed]
if the main class inherits from 2 classes with same virtual function but one of them is a pure virtual, will it just use the second one? No. C++ will not assume that you want that behavior. Or something else needs to be done? You must implement the function if you don’t want the derived … Read more