Oct 11, 2013
Post comments count0
Post likes count1
C++ corner case: You can implement pure virtual functions in the base class
In our discussion , we saw that you can declare a pure virtual function with the syntax, and if you try to call one of these functions from the base class, you will get the dreaded R6025 - pure virtual function call error. In that article, I wrote that a pure virtual function is "a method which is declared by the base class, but for which no i...