作业:哪来的输出
#include <iostream>
using namespace std;
class A {
public:
int i;
A(int x) { i = x; }
// 在此处补充你的代码
~A(){
cout<<i<<endl;
}
// 在此处补充你的代码
};
int main()
{
A a(1);
A * pa = new A(2);
delete pa;
return 0;
}
构造函数函数已经定义,main函数中未调用其他函数,输出命令只能在析构函数中。