Dear-织梦仙人 发表于 2020-12-29 19:17:47

大神求救!析构函数的名字不同,还会出错?

把building换成person就正确了?为啥?

#include<iostream>
#include<string>
using namespace std;

class person
{
public:
        building()
        {
                cout << "正在调用构造函数" << endl;
        }       
       
        ~building()
        {
                cout << "正在调用析构函数" << endl;
        }

        string m_name;               
};

void text1()
{
        person p1;
}

int main ()
{
        text1();       
}

Dear-织梦仙人 发表于 2020-12-29 19:24:26

已经懂了,谢谢。
页: [1]
查看完整版本: 大神求救!析构函数的名字不同,还会出错?