码迷,mamicode.com
首页 > 其他好文 > 详细

临时变量与复制构造函数

时间:2015-04-23 11:06:48      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:c++   程序员   面试   

class B
{
public:
	B(){
		cout << "构造函数" << endl;
	}
	B(const B &b)
	{
		cout << "复制构造函数" << endl;
	}
	
	~B()
	{
		cout << "析构函数" << endl;
	}
};

B play(B b)
{
	return b;
}


main函数输入如下代码:

{
		B b1;
		play(b1);
}
输出:

技术分享


main函数输入如下代码:

{
		B b1;
		B b2=play(b1);
	}

输出:

技术分享

为什么两个图是一样的?我猜是因为B b2=play(b1); 这一行代码,通过复制构造函数产生了临时返回值变量,然后b2调用了移动复制构造函数?

做一下实验,加入赋值操作符和移动构造函数:

<pre name="code" class="cpp">class B
{
public:
	B(){
		cout << "构造函数" << endl;
	}
	B(const B &b)
	{
		cout << "复制构造函数" << endl;
	}
	B(B &&b)
	{
		cout << "移动构造函数" << endl;
	}
	B& operator=(const B &b)
	{
		cout << "赋值操作符" << endl;
		if (this == &b)
			return *this;
		return *this;
	}
	
	~B()
	{
		cout << "析构函数" << endl;
	}
};

B play(B b)
{
	return b;
}

void main()
{
	{
		B b1;
		B b2 = play(b1);
	}

	cout << "-------------------------" << endl;
	{
		B b1;
		B b2;
		b2 = play(b1);
	}
}

输出:


技术分享

去掉移动构造函数:

class B  
{  
public:  
    B(){  
        cout << "构造函数" << endl;  
    }  
    B(const B &b)  
    {  
        cout << "复制构造函数" << endl;  
    }  
    B& operator=(const B &b)  
    {  
        cout << "赋值操作符" << endl;  
        if (this == &b)  
            return *this;  
        return *this;  
    }  
      
    ~B()  
    {  
        cout << "析构函数" << endl;  
    }  
};  
  
B play(B b)  
{  
    return b;  
}  
  
void main()  
{  
    {  
        B b1;  
        B b2;  
        b2 = play(b1);  
    }  
} 

输出:

技术分享





临时变量与复制构造函数

标签:c++   程序员   面试   

原文地址:http://blog.csdn.net/bupt8846/article/details/45217099

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!