0
What is pure polymorphism?
3 Answers
0
virtual function, when called, resolves to the most-derived implementation of the function that exists between the base and derived class, THIS capability is polymorphism
0
Pure polymorphism occurs when a single function can be applied to arguments of a. variety of types.
- 1
I can only guess but I'd assume it's polymorphism using pure virtual functions.