| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 428 人关注过本帖
标题:[求助]关于析构函数
取消只看楼主 加入收藏
lerysal
Rank: 1
等 级:新手上路
帖 子:30
专家分:0
注 册:2007-9-11
收藏
 问题点数:0 回复次数:2 
[求助]关于析构函数

class E {
int x;
public:
E( int a ) {x=a; cout<<"constructing : "<<x<<endl; }
~E( ) { cout<<"destructing : "<<x<<endl ;}
E( E &b ) { x=b.x;cout<<"copy : "<<x<<endl; }
};

void fn(E xe)
{ E f1(10), f2(f1);
}
void main( )
{ E e1(5), e2=e1;
fn(e1);
}

这个程序结果是:

constructing : 5
copy : 5
copy : 5
constructing : 10
copy : 10
destructing : 10
destructing : 10
destructing : 5
destructing : 5
destructing : 5
为什么输出两个copy : 5 ?
为什么后面要运行这么多次析构函数呢?

这块有什么规则呢?

搜索更多相关主题的帖子: 函数 
2007-11-08 13:45
lerysal
Rank: 1
等 级:新手上路
帖 子:30
专家分:0
注 册:2007-9-11
收藏
得分:0 

明白为什么有两个copy:5了
但是为什么要现输出:destructing : 10然后输出destructing : 5呢?


2007-11-08 14:18
lerysal
Rank: 1
等 级:新手上路
帖 子:30
专家分:0
注 册:2007-9-11
收藏
得分:0 

那析构函数调用的顺序由什么决定呢?构造函数明明是先运行的5啊。。。


2007-11-08 19:38
快速回复:[求助]关于析构函数
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029296 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved