每个人都希望每天都是开心的,不要因为一些琐事扰乱了心情还,闲暇的时间怎么打发,关注图老师可以让你学习更多的好东西,下面为大家推荐C++函数返回值为对象时构造析构函数的执行细节,赶紧看过来吧!
【 tulaoshi.com - 编程语言 】
看如下代码:
代码如下:
#includeiostream
class TestConstructor
{
public:
TestConstructor()
{
std::cout"TestConstructor()"std::endl;
}
~TestConstructor()
{
std::cout"~TestConstructor()"std::endl;
}
TestConstructor(const TestConstructor& testObj)
{
std::cout"TestConstructor(const TestConstructor&)"std::endl;
}
TestConstructor& operator = (const TestConstructor& testObj)
{
std::cout"TestConstructor& operator = (const TestConstructor& testObj)"std::endl;
return *this;
}
};
TestConstructor testFunc()
{
TestConstructor testInFunc; //3、调用TestConstructor() 生成对象testInFunc
return testInFunc; //4、调用TestConstructor(const TestConstructor&) 生成临时对象
//5、调用析构函数,析构对象testInFunc
}
int main()
{
TestConstructor test; //1、调用TestConstructor() 生成对象test
test = testFunc(); //2、调用testFunc() //6、调用等号把临时对象复制给对象test //7、调用析构函数,析构临时对象
return 0; //8、调用析构函数,析构对象test
}
看输出:
有注释,有输出。执行细节,一目了然了吧
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)来源:http://www.tulaoshi.com/n/20160219/1596759.html
看过《C++函数返回值为对象时构造析构函数的执行细节》的人还看了以下文章 更多>>