Why doesn't the copy constructor get called?
为什么不复制构造函数被调用?
Why does this code invoke the copy constructor?
为什么这段代码调用复制构造函数?
The copy constructor is called when a not yet existing!
调用拷贝构造函数不存在!
How to call to the copy constructor from the copy-assignment operator?
如何从复制赋值运算符调用复制构造函数?
The copy constructor is called because you call by value not by reference.
复制构造函数是因为你呼叫的价值不是由参考。
The compiler is eliding the call (actually, two calls) to the copy constructor.
编译器是省略调用(实际上,两与复制构造函数调用)。
The C++ standard allows for the copy constructor to be elided in certain situations.
c++标准的允许拷贝构造函数要省略在某些情况下。
C + + : which is the appropriate constructor to be called: the constructor or the copy constructor?
C + +:这是被称为适当的构造函数构造函数或复制构造函数?
The first case is redundant, why declare the copy constructor, make it private, and not implement it.
第一个病例是多余的,为什么声明拷贝构造函数,使其私人,不实现它。
Listing 2 shows a piece of code that results in a compile-time error because the copy constructor is private.
清单2显示了产生编译时错误的代码部分,因为该拷贝构造函数是私有的。
The assignment operator is applied on a initialized object, but this is not the case in the copy constructor.
赋值运算符是应用于一个初始化的对象,但这并不是拷贝构造函数的情况下。
The noncopyable class definition presents no surprises, as the copy constructor and operator= are declared private.
noncopyable类定义没有什么令人感到新奇的地方,因为copy constructor和operator= 声明为 private。
How else could you use that return instruction to create and return an object and yet not use the copy constructor?
不然你怎么使用返回指令创建并返回一个对象而不使用复制构造函数?
If you do not write a correct code for the copy constructor, object within a list will have some data members uninitialized.
如果你没有为拷贝构造函数写正确的代码,就有可能造成list中对象的某些数据成员没有初始化。
When I return by value from an assignment operator, firstly what is the mechanism and basis of calling the copy constructor?
当我返回值赋值操作符,首先是调用复制构造函数为基础的机制?
When it can do so, the compiler is permitted (but not obligated) to skip the copy constructor and create the object directly.
当这种用法被支持时,编译器被允许(但不被制强)跳过复制构造函数而直接创建该对象。
The only other thing to note in Listing 17 is that the definitions for the copy constructor and operator= methods are not provided.
清单17中要注意的另一点是,未提供copy constructor和operator=方法的定义。
Put the functionality you need in separate functions called by the destructor and the copy constructor and the assignment operator.
放在单独的功能调用析构函数和拷贝构造函数和赋值运算符你所需要的功能。
The copy constructor is a special kind of constructor which creates a new object which is a copy of an existing one, and does it efficiently.
拷贝构造函数是一种特别的构造函数,用于复制已经存在的对象到新生成的对象,这是一种高效的方式。
Again, if you don't provide a copy constructor, the compiler generates one for you, again just copying the members using the copy constructor.
再一次,如果你不提供一个拷贝构造函数,编译器生成一个你,再一次复制使用拷贝构造函数成员。
To manage a class with pointer members, we must define all three copy-control members: the copy constructor, assignment operator, and the destructor.
为了管理具有指针成员的类,必须定义三个复制控制成员:复制构造函数、赋值操作符和析构函数。
Each class whose instance will go into the container must implement at least the copy constructor it is good to implement also the assignment operator.
每个类(其实例要在容器内使用)必须至少实现拷贝构造函数(实现赋值运算符,也是好习惯)。
To resolve C2299, do not make the copy constructor or assignment operator a template function, but rather a non-template function that takes a class type.
若要解决C2299,请不要使复制构造函数或赋值运算符成为模板函数,而使其成为采用类类型的非模板函数。
You do not need a copy constructor, and you need never sweat the gory details of implementing a clone method.
您不需要使用复制构造函数,并且永远也不需要大汗淋漓地去实现clone方法的那些令人惨不忍睹的细节。
In the first case, you are essentially declaring a private copy constructor and then not providing any implementation. By declaring them private, non-members cannot copy it.
在第一种情况下,你基本上是声明一个私有拷贝构造函数,然后没有提供任何实现。通过声明他们私人,非成员国不能复制它。
Default copy constructor does a very simple operation, they will do a bit-wise (member-wise) copy of an object, which means that the object will be copied bit by bit.
如果程序员没有提供拷贝构造函数,那么编译器会自动生成默认的拷贝构造函数。默认的拷贝构造函数会执行简单的操作,即按位拷贝对象。
Your first solution conveys to the reader that the copy-constructor is private and is not to be used.
你的第一个解决方案向读者传达,拷贝构造函数是私有的,不能使用。
The traditional way to solve this is to declare the copy-constructor private and to leave it unimplemented.
传统的方式来解决这个是声明拷贝构造函数私有和未实现的。
We all know that the implicit copy constructor operates as follows: default construct all member variables, then assign each member variable the appropriate corresponding value.
我们都知道,这个隐式的拷贝构造函数操作如下:默认构建所有成员变量,然后分配每个成员变量相应的对应值。
We all know that the implicit copy constructor operates as follows: default construct all member variables, then assign each member variable the appropriate corresponding value.
我们都知道,这个隐式的拷贝构造函数操作如下:默认构建所有成员变量,然后分配每个成员变量相应的对应值。
应用推荐