why virtual functions can't be static?
Printable View
why virtual functions can't be static?
Because static functions aren't inherited. They're associated with classes, not objects. virtual is associated with calling member functions from pointers to objects.
Is that the only reasonQuote:
Originally Posted by Dante Shamest