大神求救!析构函数的名字不同,还会出错?
把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();
} 已经懂了,谢谢。
页:
[1]