Tagged Questions
The copy-constructor tag has no wiki summary.
160
votes
2answers
9k views
What is the copy-and-swap idiom?
What is this idiom and when should it be used? Which problems does it solve? Will the idiom change when C++0x is used?
Although it's been mentioned in many places, we didn't have any singular "what ...
95
votes
3answers
7k views
What is The Rule of Three?
What does copying an object mean? What are the copy constructor and the copy assignment operator? When do I need to declare them myself? How can I prevent my objects from being copied?
29
votes
4answers
3k views
Why should the copy constructor accept its parameter by reference in C++?
Why must a copy constructor be passed its parameter by reference?
20
votes
7answers
9k views
15
votes
1answer
790 views
variadic constructors
Are variadic constructors supposed to hide the implicitly generated ones, i.e. the default constructor and the copy constructor?
struct Foo
{
template<typename... Args> ...
15
votes
3answers
758 views
C++ Copy constructor, temporaries and copy semantics
For this program
#include <iostream>
using std::cout;
struct C
{
C() { cout << "Default C called!\n"; }
C(const C &rhs) { cout << "CC called!\n"; }
};
const C f()
{
...
14
votes
6answers
427 views
What's the most reliable way to prohibit a copy constructor in C++?
Sometimes it's necessary to prohibit a copy constructor in a C++ class so that class becomes "non-copyable". Of course, operator= should be prohibited at the same time.
So far I've seen two ways to ...
14
votes
3answers
522 views
why copy constructor is called when passing temp by const ref?
I am passing an unnamed temporary object to a function defined with const ref parameter. The copy ctor of the class is private, and I get a compilation error. I don't understand why a copy constructor ...
13
votes
5answers
3k views
Copy constructor and = operator overload in C++: is a common function possible?
Since a copy constructor
MyClass(const MyClass&);
and an = operator overload
MyClass& operator = (const MyClass&);
have pretty much the same code, the same parameter, and only differ ...
13
votes
6answers
13k views
Dynamically allocating an array of objects
This is kind of a beginners question, but I haven't done C++ in a long time, so here goes...
I have a class that contains a dynamically allocated array, say
class A
{
int* myArray;
A()
{
...
12
votes
4answers
356 views
How can I extend a compiler generated copy constructor
I frequently run into the problem, that I must extend a compiler generated copy constructor. Example:
class xyz;
class C
{
...
int a, b, c;
std::set<int> mySet;
xyz ...
12
votes
4answers
2k views
Checklist for writing copy constuctor and assignment operator in C++
Please write a list of tasks that a copy constructor and assignment operator need to do in C++ to keep exception safety, avoid memory leaks etc.
10
votes
2answers
389 views
C++0x: Capture By Value for Lambda, always a copy?
Is the compiler allowed to eliminate the copy that is required for the by-value capture?
vector<Image> movie1;
apply( [=movie1](){ return movie1.size(); } );
Is there any circumstance that ...
10
votes
3answers
1k views
Correct way to duplicate Delphi object
What are pros and cons of duplication an object instance with constructor or instance function?
Example A:
type
TMyObject = class
strict private
FField: integer;
public
constructor ...
10
votes
8answers
509 views
C++: Why is the copy ctor used in this code?
class A
{
public:
A(const int n_);
A(const A& that_);
A& operator=(const A& that_);
};
A::A(const int n_)
{ cout << "A::A(int), n_=" << n_ << endl; }
A::A(const ...
9
votes
4answers
453 views
Why would a copy constructor have more than one parameter?
$12.8/2 - 'A non-template constructor
for class X is a copy constructor if
its first parameter is of type X&,
const X&, volatile X& or const
volatile X&, and either there ...
9
votes
5answers
954 views
When do we have to use copy constructors?
As I know that C++ compiler creates a copy constructor for each class. In which cases we have to write user defined copy constructors? Can you give some examples?
8
votes
2answers
223 views
Why is this code trying to call the copy constructor?
I just spent an inordinate amount of time fiddling with a complilation error in Visual Studio. I have distilled the code into the small compilable example below and tried it on IdeOne and got the same ...
8
votes
2answers
83 views
Does casting a pointer to “void*” have any effect when placement new is called?
I'm reviewing code of a custom container and some portions of it create elements like this:
::new( (void*)&buffer[index] ) CStoredType( other );
and some do like this:
::new( ...
8
votes
2answers
338 views
constructor invocation mechanism
struct my
{
my(){ std::cout<<"Default";}
my(const my& m){ std::cout<<"Copy";}
~my(){ std::cout<<"Destructor";}
};
int main()
{
my m(); //1
my n(my()); //2
}
...
8
votes
8answers
511 views
Implementing the copy constructor in terms of operator=
If the operator= is properly defined, is it OK to use the following as copy constructor?
MyClass::MyClass(MyClass const &_copy)
{
*this = _copy;
}
8
votes
6answers
771 views
Is it bad form to call the default assignment operator from the copy constructor?
Consider a class of which copies need to be made. The vast majority of the data elements in the copy must strictly reflect the original, however there are select few elements whose state is not to be ...
7
votes
2answers
166 views
Questions about postblit and move semantics
I have already asked a similar question a while ago, but I'm still unclear on some details.
Under what circumstances is the postblit constructor called?
What are the semantics of moving an object? ...
7
votes
7answers
492 views
What's the use of the private copy constructor in c++
Why do people define a private copy constructor?
When is making the copy constructor and the assignment operator private a good design?
If there are no members in the class which are pointers or ...
7
votes
6answers
249 views
“CopyConstructible” requirement for C++ stl container element
Regarding to the requirement for C++ stl container element, the standard says: the element type should be CopyConstructible, and there is a table for CopyConstructible requirements. Also by various ...
7
votes
4answers
414 views
Non-const copy constructor and implicit conversions on return value
Consider the following C++ code:
struct B { };
struct A
{
A(int);
A(A&); // missing const is intentional
A(B);
operator B();
};
A f()
{
// return A(1); // ...
7
votes
3answers
304 views
Safe assignment and copy-and-swap idiom
I'm learning c++ and I recently learned (here in stack overflow) about the copy-and-swap idiom and I have a few questions about it. So, suppose I have the following class using a copy-and-swap idiom, ...
7
votes
3answers
340 views
RVO/NRVO and public undefined copy constructor
I'm fighting the following proposal now, and I want to know legal and for lesser extent moral arguments against it or for it.
What we had:
#include <vector>
class T;
class C
{
public:
...
7
votes
7answers
290 views
Construct object with itself as reference?
I just realised that this program compiles and runs (gcc version 4.4.5 / Ubuntu):
#include <iostream>
using namespace std;
class Test
{
public:
// copyconstructor
Test(const Test& ...
7
votes
5answers
519 views
What's all the fuss about C++ copy constructors? [closed]
Possible Duplicate:
When do we have to use copy constructors?
Why exactly are C++ copy constructors so important? I just learned about them and I don't quite see what is the fuss about ...
6
votes
4answers
90 views
classes with pointer members and no overridden copy constructor
When pointers point to something declared in the same class, am I right in thinking that if you copy such an object that there are multiple sets of pointers but they all point to the same object(s)?
...
6
votes
5answers
173 views
const in copy constructor in c++
class x
{
int a;
public:
x()
{
cout<<"\n\ndefault constructor";
}
x(x& obj)
{
cout<<"\n\ncopy constructor";
}
...
6
votes
4answers
182 views
Creating a copy constructor for a linked list
This is homework. Homework tag attached, just making sure everyone sees it
I'm working on implementing a linked list class for my C++ class, and the copy constructor has be very confusing for me.
...
6
votes
3answers
185 views
constructor or copy constructor?
In the book Generic Programming and the STL (Chinese edition), it says:
X x = X() will call the copy constructor.
It seems a little weird to me. And I write a test program like this
#include ...
6
votes
4answers
109 views
Is the copy CTOR required even if never called?
consider the following:
class X {
public:
X(int i) { cout << "X(int i)" << endl; }
X(const X& x) { cout << "X(const X& x)" << endl; }
};
void main() {
X ...
6
votes
6answers
177 views
Strange behavior of copy-initialization, doesn't call the copy-constructor!
I was reading the difference between direct-initialization and copy-initialization (ยง8.5/12):
T x(a); //direct-initialization
T y = a; //copy-initialization
What I understand from reading about ...
6
votes
5answers
175 views
C++: Is default copy constructor affected by presence of other constructors and destructor?
As we know, if any constructor is declared (copy constructor included), default constructor (the one that takes no arguments) is not implicitly created. Does the same happen with a default copy ...
6
votes
6answers
607 views
Check for “self-assignment” in copy constructor?
Today in university I was recommended by a professor that I'd check for (this != ©) in the copy constructor, similarly to how you should do it when overloading operator=. However I questioned ...
6
votes
5answers
1k views
Why must the copy assignment operator return a reference/const reference?
In C++, the concept of returning reference from the copy assignment operator is unclear to me. Why can't the copy assignment operator return a copy of the new object? In addition, if I have class A, ...
6
votes
2answers
233 views
copy constructor with default arguments
As far as I know, the copy constructor must be of the form T(const T&) or T(T&). What if I wanted to add default arguments to the signature?
T(const T&, double f = 1.0);
Would that be ...
6
votes
3answers
213 views
std::string x(x);
std::string x(x);
This crashes very badly on my compiler. Does this mean I should test for this != &that in my own copy constructors, or can I assume that no client will ever be so stupid?
6
votes
3answers
572 views
compiler generated constructors
This is just a quick question to understand correctly what happens when you create a class with a constructor like this:
class A
{
public:
A() {}
};
I know that no default constructor is ...
6
votes
4answers
473 views
Why copy constructor is not called in this case?
Here is the little code snippet:
class A
{
public:
A(int value) : value_(value)
{
cout <<"Regular constructor" <<endl;
}
A(const A& other) : value_(other.value_) ...
6
votes
6answers
820 views
Is this good code? (copy ctor + operator=)
For one reason or another, I'm forced to provide both a copy constructor and an operator= for my class. I thought I didn't need operator= if I defined a copy ctor, but QList wants one. Putting that ...
6
votes
4answers
8k views
Copy Constructor in C++ is called when object is returned from a function?
I understand copy constructor is called on three instances
When instantiating one object and initializing it with values from another object (as in the example above).
When passing an object by ...
5
votes
1answer
90 views
C++ operator overloading and the copy constructor
I'm having difficulty wrapping my mind around the following (specifically, scenario b):
(Assume I have defined an assignment operator, addition operator, and copy constructor just to output the fact ...
5
votes
3answers
121 views
Copy Constructor is not invoked [closed]
Possible Duplicate:
Why copy constructor is not called in this case?
Consider the sample program below:
#include <iostream>
using namespace std;
class sample
{
private:
...
5
votes
2answers
125 views
(Simple Constructor Concept) Why doesn't Foo(); do anything?
This is a simple C++ constructor concept I'm having trouble with.
Given this code snippet:
#include <iostream>
using namespace std;
class Foo
{
public:
Foo () { cout << ...
5
votes
5answers
146 views
How to copy (or swap) objects of a type that contains members that are references or const?
The problem I am trying to address arises with making containers such as an std::vector of objects that contain reference and const data members:
struct Foo;
struct Bar {
Bar (Foo & foo, int ...
5
votes
3answers
182 views
Why would I make copy constructor and assignment operator private and implemented in C++?
Inspired by this question.
Usually the reason to make copy-constructor and assignment operator private is to make the class non-copyable so that objects can only be created and destroyed, but not ...