Search results

  1. Adam

    C++: Inheritance and Overloading

    Quick question for those of you who are more knowledgeable in C++... Let's say I have a two classes: class Matrix { private: int _rows; int _columns; }; class SuperMatrix : public Matrix { public: SuperMatrix(const SuperMatrix& sm2); const SuperMatrix operator=(const SuperMatrix& rhs)...
Back
Top