看看这段C++代码, 为什么a b 对象销毁的代码不执行?

#include<iostream>usingnamespacestd;classB{public:staticB*pB;staticB*GetB(){returnpB;... #include <iostream>
using namespace std;

class B
{
public:
static B* pB;
static B* GetB()
{
return pB;
}
B()
{
pB = this;
cout <<"B created"<<endl;
}
~B()
{
cout <<"B destroyed"<<endl;
}

};

B* B::pB = NULL;

class A
{
public:
A()
{
cout <<"A created"<<endl;
new B;
}
~A()
{
delete B::GetB();
cout <<"A destroyed"<<endl;
}
};
A a;
void main()
{
}
展开
 我来答
jdq_37
2010-12-12 · TA获得超过996个赞
知道小有建树答主
回答量:658
采纳率:0%
帮助的人:953万
展开全部
A/B销毁的代码其实已经执行,但是cout没有成功执行,可能是因为iostream对象先于A、B释放了,改用printf可以看到,A、B的销毁代码是执行了的。如下代码:
#include <iostream>
using namespace std;

class B
{
public:
static B* pB;
static B* GetB()
{
return pB;
}
B()
{
pB = this;
cout <<"B created"<<endl;
}
~B()
{
printf("B destroyed\n");
}

};

B* B::pB = NULL;

class A
{
public:
A()
{
cout <<"A created"<<endl;
new B;
}
~A()
{
delete B::GetB();
printf("A destroyed\n");
}
};
A a;
void main()
{
}
passion_wu128
2010-12-12 · TA获得超过1168个赞
知道小有建树答主
回答量:370
采纳率:0%
帮助的人:547万
展开全部
你把A a;放到main函数里面就可以了。为什么呢?
因为A a;表示声明一个全局变量,其生命周期一直要到程序运行结束,而此时io对象已经销毁。(即不能输出A、B的销毁信息)。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式