#include <iostream> using namespace std; class person { public: //构造函数 person() { cout << "这是构造函数测试" << endl; } //析构函数 ~person() { cout << "这是析构函数测试" << endl; } }; void test001() { person p; } int main() { test001(); system("pause"); return 0; }
时间: 2024-01-05 14:02:37 浏览: 83
#include <iostream>
这个程序定义了一个名为 person 的类,其中包含一个构造函数和一个析构函数。在主函数中,调用了一个名为 test001 的函数,在该函数中创建了一个 person 对象 p。当 test001 函数执行完毕时,会自动调用 p 的析构函数,输出 "这是析构函数测试"。最后程序会暂停等待用户按下任意键后结束运行。
阅读全文