博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
newClass a = Func(3)中隐藏的操作
阅读量:5828 次
发布时间:2019-06-18

本文共 1672 字,大约阅读时间需要 5 分钟。

缘起

#include 
#include
using namespace std;class A { public: A() { cout << "default constructor!" << endl; } A(int i) { cout << "constructed by parameter:" << i << endl; } ~A() { cout << "destructed" << endl; }};A Play(A a){ return a;}int main(){// A temp; A temp = Play(2); cout << "-----------------------" << endl;}

 执行结果

 

问题1:为何有两个析构函数

执行函数Play(2)时,函数返回一个类型为A的对象,这个临时对象,这个对象是临时的,在赋值给temp后立马消失(即析构,程序中“---”为证)。然后A temp = Play(2)等号前半部分调用默认拷贝构造函数把函数返回的值赋给temp。main()函数结束时temp也就over了。

问题2:为何函数接收的是类,而传递的是整形的也行?

可以的,这里单个参数构造函数会定义一个隐性的类型转换,从参数的类型转换到自己。如果不让他转换,可以在构造函数前加入关键字“explicit”,例如

#include 
#include
using namespace std;class A { public: A() { cout << "default constructor!" << endl; } A(int i) { cout << "constructed by parameter:" << i << endl; } ~A() { cout << "destructed" << endl; }};A Play(A a){ return a;}int main(){// A temp; A temp = Play(2); cout << "-----------------------" << endl;}

错误提示

问题3: 既然有两个析构函数,为什么没有两个构造函数,即A temp不调用无参数的构造函数吗?

有两个析构函数,同时也有两个构造函数,只不过A temp = Play(2);调用的不是无参数的构造函数,而是默认的拷贝构造函数(不信你看下边的程序),区别A temp;(这里确实调用无参数的构造函数)

#include 
#include
using namespace std;class A { public: A() { cout << "default constructor!" << endl; } A(int i) { cout << "constructed by parameter:" << i << endl; } A(const A &a) { cout << "here" << endl; } ~A() { cout << "destructed" << endl; }};A Play(A a){ return a;}int main(){// A temp; A temp = Play(2); cout << "-----------------------" << endl;}

输出

 

 

转载地址:http://dzodx.baihongyu.com/

你可能感兴趣的文章
云计算最大难处
查看>>
关于数据分析思路的4点心得
查看>>
Memcached安装与配置
查看>>
美团数据仓库的演进
查看>>
SAP被评为“大数据”预测分析领军企业
查看>>
联想企业网盘张跃华:让文件创造业务价值
查看>>
记录一次蚂蚁金服前端电话面试
查看>>
直播源码开发视频直播平台,不得不了解的流程
查看>>
Ubuntu上的pycrypto给出了编译器错误
查看>>
聊聊flink的RestClientConfiguration
查看>>
在CentOS上搭建git仓库服务器以及mac端进行克隆和提交到远程git仓库
查看>>
測試文章
查看>>
Flex很难?一文就足够了
查看>>
【BATJ面试必会】JAVA面试到底需要掌握什么?【上】
查看>>
CollabNet_Subversion小结
查看>>
mysql定时备份自动上传
查看>>
Linux 高可用集群解决方案
查看>>
17岁时少年决定把海洋洗干净,现在21岁的他做到了
查看>>
linux 启动oracle
查看>>
《写给大忙人看的java se 8》笔记
查看>>