王鹿其 发表于 2024-1-9 19:19:44

下面的代码错在哪

#include<iostream>
using namespace std;
class base
{
        base(string m_name, int m_age=0)
        {
                name = m_name;
                age = m_age;
                cout << "base的构造函数" << endl;
        }
        base(const base& p)
        {
                cout << "base的复制构造函数" << endl;
        }
        ~base()
        {
                cout << "base的析构函数" << endl;
        }
        virtual void print()
        {
                cout << age<< endl;
        }

protected:
        string name;
        int age;
};
class base1 :public base
{
public:
        base1(string m_name, int m_age, int m_id);
        virtual void print();
        base1(const base1& p1)
        {
                cout << "base1的复制构造函数" << endl;
        }
        ~base1()
        {
                cout << "base1的析构函数" << endl;
        }
       
private:
        int id;
};
base1::base1(string m_name, int m_age, int m_id) :base(m_name, m_age = 0)
{
        id = m_id;
}
void base1::print()
{
        cout << age << "" << id << endl;
}

int main()
{


}

FishC 发表于 2024-1-9 19:19:51

代码中的错误在于缺少头文件的引入和构造函数的定义。

需要引入头文件iostream来使用cout和endl:

#include <iostream>

同时,构造函数的定义应该在类的外部进行:

base::base(string m_name, int m_age=0)
{
    name = m_name;
    age = m_age;
    cout << "构造函数被调用" << endl;
}

另外,还需要在构造函数的参数列表中添加访问修饰符public来使构造函数可被外部调用:

class base
{
public:
    base(string m_name, int m_age=0);
    //其他成员变量和方法
};

注意,这里只是对代码中存在的错误进行了修正,并没有提及其他可能存在的问题。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
页: [1]
查看完整版本: 下面的代码错在哪