难度等级:新秀
考虑下面的C++程序。
#include
#include
using namespace std;
class Test
{
public:
Test() {}
Test(const Test &t)
{
cout<<"Copy constructor called "<
输出:
赋值运算符称为
复制构造函数称为
从现有对象创建新对象时,将调用复制构造函数作为现有对象的副本(请参阅此G-Fact)。当已初始化的对象从另一个现有对象中分配了新值时,将调用赋值运算符。
t2 = t1; // calls assignment operator, same as "t2.operator=(t1);"
Test t3 = t1; // calls copy constructor, same as "Test t3(t1);"
参考:
http://en.wikipedia.org/wiki/Copy_constructor
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。