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...}
    ...
};

感觉挺基础的。。

posted on 2022-02-26 17:23  Duyy  阅读(80)  评论(0编辑  收藏  举报