A copy constructor is a constructor that creates a new object that is a clone of an existing object. The term is mostly used in the C++ programming language, where copy constructors have a special status.

learn more… | top users | synonyms

0
votes
2answers
28 views

Why do std classes not use static_assert on non-copyable types?

Why does the std library not use these instead? Currently if a call is made to the copy constructor on a non-copyable object, the error message can be a little 'cryptic' or confusing to someone who ...
0
votes
4answers
66 views

C++ bitwise copy of object failing? Why?

This question is regarding bitwise copying of class objects. Why is constructor not called, instead destructor is called in below code ? The output is as HowMany h2 = f(h); // No constructor get;s ...
1
vote
2answers
44 views

C++: which is the appropriate constructor to be called: the constructor or the copy constructor?

The code class ElisionTest { public: int n; // ElisionTest(ElisionTest& other): n(other.n) {cout<<"copy constructor"<<endl;} ElisionTest(int n): n(n) ...
0
votes
1answer
20 views

Qt: Iterators and OBject: copy constructor error

In class called UserForms, I define a list (QList) or SqlQueryModel objects (subclass of QSqlQueryModel), as in this Qt tutorial. In userforms.h: QList<SqlQueryModel> userModels; Then in my ...
5
votes
4answers
48 views

Is it possible to write copy constructors for classes with interface member variables in Java?

How would you write a copy constructor for a class with interface member variables? For instance: public class House{ // IAnimal is an interface IAnimal pet; public House(IAnimal pet){ ...
0
votes
2answers
63 views

How to call to the copy constructor from the copy-assignment operator?

I'm implementing a linked list. I wrote a copy constructor: // --- copy constructor --- IntList(const IntList& last_list) { first = new ...
0
votes
2answers
75 views

C++ copy constructor, overload assigment operator , methos get()

I had an exercise in my university in c++. So the course they asked me to make a copy constructor and an overload assigment operator = . So i did and it worked fine. They said me that i am wrong in ...
1
vote
3answers
56 views

Does static member need to be copied in copy constructor and if yes, how to do it?

I have a class with a container that is declared static: class test { public: test(const ClassA& aRef, const std::string& token); test(const test& src); ~test(); private: ...
-1
votes
1answer
48 views

c++ make implicit copy constructor use initialization list

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. Often I desire a ...
-1
votes
1answer
37 views

no matching function for call to CopyConstructor

there. I have code similar to the one below. struct SomeClass { SomeClass(); }; SomeClass::SomeClass() {} template <class K, class T> struct BaseStruct { typedef K kType; ...
0
votes
1answer
39 views

Java method parameter overriding

I must have written it really wrong, because so far no one understood my point. From the beginning, here are all details needed: We have a class called Gem, which has two children: TimeGem and ...
0
votes
2answers
72 views

Create derived class from base class object

I have base class which is generic parser of some data, and I have multiple derived classes which provide specific access interface to data contained in parser. I can determine the type of derived ...
0
votes
3answers
134 views

Is this a valid copy constructor?

I've just started learning about Rule of Three and was wondering if the following approach was sufficient for a copy constructor: Array<T, ROW, COL>(const Array<T, ROW, COL> &array) { ...
0
votes
0answers
34 views

Should I Implement ICloneable?

I have written some codes and found that two classes (namely Fish and Mammal below) have a same pattern so I decided to sum up with generics. The problem is, I need copy a constructor from the base ...
0
votes
0answers
58 views

C++ Visual Studio 2010/2012 explicit copy constructor compilation error

Trying to compile some code in Visual Studio 2012 using VC++11.0 which I've duplicated below. I get the following compilation error : C2664: 'XACT::InitializeQueueList' : cannot convert parameter 1 ...
3
votes
1answer
142 views

Returning a unique_ptr<T> . Concept clarification

While reading about boost unique_ptr and on this link it states that such a pointer cannot be copied which I understand however it states that such a pointer can be returned from a function. This ...
0
votes
3answers
46 views

how to copy SubClass object in BaseClass copy constructor

I would like to make copy of SubClass object in BaseClass constructor. I need that the following code execute correctly. class BaseClass{ BaseClass() {} BaseClass(BaseClass base) { ...
3
votes
2answers
77 views

copy construtor called extra

I have a program which is showing weird behaviour #include <cstdlib> #include <iostream> using namespace std; class man{ int i ; public: man(){ ...
2
votes
2answers
197 views

C++11 virtual copy constructor

I'm reading C++ Design Patterns and Derivatives Pricing by Mark Joshi and implementing his code in C++11. Everything has gone pretty well until I hit chapter 4 where he discusses virtual copy ...
2
votes
4answers
87 views

Converting constructor

Trying to compile the code: class Foo { public: Foo(Foo&){} Foo(int*){} }; int main() { int i = 2; Foo foo = &i; return 0; } Getting this: prog.cpp: In ...
5
votes
7answers
140 views

Which is the difference between declaring a constructor private and =delete?

For example, I want to declare a class but I want the client to not be able to use the copy constructor (or copy assignment operator) Both of the following two does not allow the use of the copy ...
2
votes
2answers
56 views

copy constructor c++ on temporary objects

#include <iostream> using namespace std; class A { int x; public: A(int c) : x(c) {} A(const A& a) { x = a.x; cout << "copy constructor called" << endl;} }; class ...
2
votes
4answers
67 views

why copy constructor is called when we return an object from a method by value

why copy constructor is called when we return an object from a method by value. please see my below code in that i am returning an object from a method while returning control is hitting the copy ...
2
votes
3answers
80 views

why copy constructor is call when we pass an object as an argument by value to a method

i am new to C++ programming, when i am doing some C++ programs i have got a doubt that is why copy constructor is called when i pass an object as argument by value to a function. please see my below ...
-6
votes
1answer
49 views

prohibiting copy constructor with new standard c++11

hey guys I was trying to create a simple class with copy constructor prohibiting. #include <cstdlib> // class my_stack { std::size_t last; int *data; std::size_t max_elem; public : int ...
1
vote
0answers
31 views

How to deep copy a btTriangleMesh in Bullet Physics?

I use Bullet Physics and I need to copy an instance of the btTriangleMesh type. // the variable is a class member btTriangleMesh triangles; My aim is to change the collision shape of a body to a ...
1
vote
3answers
89 views

Destructor called to destruct object before I finish using this object

In my code there's operator+ overloading. In this scope, I define object ans, which I want to build and return, but it seems that the destructor distructs ans before I can return it, so this method ...
-1
votes
0answers
32 views

clone function to copy an object using a non-public copy constructor [closed]

I have a Grill class and I want the clone function be the only public way to copy a Grill object. I want to define the copy-constructor as protected and then call it using the public clone function. I ...
0
votes
3answers
51 views

C++ copy constructor by pointer

Hello i want to create a new class variable that is a pointer and initialize it by copy constructor. Though I know how copy constructor works by refernce, i cannot figure out how to do it. Can you ...
0
votes
1answer
38 views

C++ Deleting Private Array in Copy Constructor and Assignment operator

I'm trying to implement a container that allocated memory to the heap, but it seems as though my base constructor and my argument constructor don't like each other. Below, I've posted the code without ...
4
votes
1answer
188 views

Why was the std::pair class standard changed to disallow types with only a nonconstant copy constructor in C++11?

I am reading through Nicolai M. Josuttis' "The C++ Standard Library (Second Edition)" and have just reached the section on std::pair. The author notes that: Since C++11, a pair<> using a ...
10
votes
2answers
113 views

std::string copy constructor NOT deep in GCC 4.1.2?

I wonder if i misunderstood something: does a copy constructor from std::string not copy its content? string str1 = "Hello World"; string str2(str1); if(str1.c_str() == str2.c_str()) // Same ...
0
votes
1answer
53 views

Can you explain in English, as simply as possible, what a copy constructor is and when I need to use it [duplicate]

I'm a programmer who has primarily worked in Python switching over to C++. I'm getting the hang of pointers and memory allocation, but I've read several explanations of copy constructors, and I do not ...
0
votes
1answer
75 views

Copy Constructor not being called when returning by value : C++

Consider a Class: class loc{ int x; int y; public: loc(); loc(int x,int y); loc(const loc& l);//Copy Constructor loc operator + (const loc& l); loc operator - ...
-1
votes
1answer
34 views

Is there any way to copy some class and dont change the real one?

class A { // constructor,destructors and some getter and setter functions. friend A& operator+(A& x,A& y); } class B { vector <A*> A_s; } Assume here is A n1*=new A("P"); and A ...
0
votes
2answers
112 views

Copy constructor causes memory leak

I've checked this post, and tried the suggestions mentioned, but instead of getting memory leaks I get segmentation faults. This is the code that causes the leak: class RecordWithKey : public ...
0
votes
1answer
38 views

Init. static members while COPY CTOR is private

I have a class X, and my goal is to have a special var that indicates a "bad object", in order to implement a function that returns X&. For example: //X.h class X{ private: int i; X(const ...
0
votes
2answers
39 views

two different behavior in using default and overridden copy constructor

When I override copy constructor why it segfaults in first delete itself. output: $./a.out inside ctor inside copy-ctor Say i am in someFunc inside dtor *** glibc detected *** ./a.out: free(): ...
1
vote
1answer
71 views

why do I need both constructor and assignment operator here?

My code doesn't compile when one of these is omitted. I thought only copy assignment operator is required here in main(). Where is constructor needed too? #include <iostream> #include ...
1
vote
4answers
225 views

Can we say bye to copy constructors?

Copy constructors were traditionally ubiquitous in C++ programs. However, I'm doubting whether there's a good reason to that since C++11. Even when the program logic didn't need copying objects, copy ...
-1
votes
2answers
93 views

Why shared_ptr<T> expects copy/move constructor in T?

I have the following code: #include <memory> using namespace std; template<typename U> class A; template<typename U> class B { private: shared_ptr<const ...
0
votes
3answers
30 views

overflow in copied version of linked list

I have a linked list class. It includes a copy constructor: LinkedListStorage(const LinkedListStorage &other) :root(NULL) { size = other.size; count = other.count; node *cur = ...
1
vote
2answers
87 views

Destructor causes Segmentation Fault

I know there's a lot of similar questions out there, but I haven't found anything that helps yet. I've been at this for several hours now and it's driving me crazy. I get a segmentation fault when a ...
1
vote
1answer
64 views

Assignment operator overload not getting called

I have two classes, Database and Record. class Database { private: Record* head; public: Database(Record*); Database(); Database(const Database&); ...
0
votes
3answers
39 views

Doubts in a code to test the use of assignment operator

I am writing a code to test the use of assignment operator and copy constructor. The code is as follows: #include <iostream> #include <algorithm> using namespace std; class fun { int ...
0
votes
1answer
45 views

How to make a copy constructor for a Linked List

Ok so I'm trying to make a copy constructor for a linked list. I know how to a copy constructor for an array but not for a linked list. Can somebody give me an idea on how I can do this and thanks. ...
9
votes
1answer
213 views

Why the copy constructor is not called?

In this code: #include <iostream> using std::cout; class Foo { public: Foo(): egg(0) {} Foo(const Foo& other): egg(1) {} int egg; }; Foo bar() { Foo baz; ...
0
votes
1answer
32 views

Is a copy constructor needed for my OpenMP parallelization?

I ran into errors while I was parallelizing my function below. bool CMolecule::computeForces_twobody(vector<CMolecule*> &mols, vector<CPnt> & force, ...
0
votes
0answers
51 views

C++ template and copy constructor error finding

C++ template and copy constructor error finding Q. Explain at least three things that can go wrong template<typename A, typename B, typename C> C mymin (const A& a, const B& b) { if ...
0
votes
1answer
63 views

C++ Copy Constructor and Assignment Operator Define

C++ Copy Constructor and Assignment Operator Define Could anybody help me correct the following copy constructor and assignment operator? as you see, assignment operator seems to work well; I ran ...

1 2 3 4 5 13