class Father { public: Father(int x) {do sth.} ... };
对于这样的父类,下面一种子类的构造函数时错误的:
class Son : public Father { public: Son() {do sth...} ... };
会提示你没给Father传参数,正确用法应该是:
class Son : public Father { public: Son() : Father(1) {//do sth...} //或者是Son(int x) : Father(x) {//do sth...} ... };
感觉挺基础的。。