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.
1
vote
3answers
56 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
29 views
clone function to copy an object using a non-public copy constructor
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
44 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
28 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
175 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
83 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
51 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
51 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
33 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
93 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
36 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
34 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
65 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
207 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
84 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
29 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
73 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
59 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
35 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
42 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.
...
0
votes
1answer
28 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
41 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
45 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 ...
0
votes
1answer
58 views
C++ copy constructor and type casting
Thanks for your help, I was able to summarize the following solution
Please correct me if I am wrong
Q. Explain at least three things that can go wrong
template<typename A, typename B, typename ...
1
vote
3answers
62 views
Copy constructor calls destructor c++
I have a test class of my to make my own string functions. I have a problem with the copy destructor.
I have 2 strings: s1 and s2.
I call the function s3 = s1 + s2;
It first calls the operator+ ...
-1
votes
1answer
87 views
Rule of Three. Copy Constructor, Assignment Operator Implementation [closed]
Rule of Three. Copy Constructor, Assignment Operator Implementation
#include <iostream>
using namespace std;
class IntPart
{
public:
IntPart(); // default constructor
IntPart(int n);
...
0
votes
1answer
54 views
Memory Management : character arrays and = operator
Memory Management : character arrays and = operator
Q. In terms of Memory Management, What error would you have with the following code?
class String
{
public:
String(const char right[]);
...
1
vote
1answer
59 views
Copy Constructor, Deep Copy, Constant Reference
Copy Constructor, Deep Copy, Constant Reference
Q. In terms of Memory Management.
Copy constructor for a class A has the form A(const A& a)
Why is the parameter passed by reference?
Explain why ...
-2
votes
3answers
41 views
Big Three. Destructor without copy constructor [closed]
Big Three. Destructor without copy constructor
Q. In terms of Memory Management,
What problems if I define a destructor for a class without copy constructor?
Answer.
Do I really need to define all ...
0
votes
2answers
56 views
Copy vector of vectors in copy constructor
A simple thing as I thought at first seems to be harder than I thought. I want to copy a vector of vectors of type int inside a copy constructor.
std::vector<std::vector<int> * > * bar;
...
-7
votes
1answer
37 views
I want to create a new object in the copy constructor ,but i need to be sure that his reference is not null [closed]
public Date(Date other)
{
if(other==null){
other._day=DEFAULTDAY;
other._month=DEFAULTMONTH;
other._year=DEFAULTYEAR;
this._day=other._day;
...
0
votes
2answers
53 views
linkList copy constructor and assignment operator
I'm writing my node and list classes and everything works fine except when I include destructor , copy constructor and the assignment operator functions in the list class, and I don't know what is ...
1
vote
1answer
60 views
How to use members of temporary instance in C++?
I have an object A with copy constructor and assignment operator which has a member QVector. I use it that way:
QVector<B*> x = GetA().GetVector();
x.at(0)->doSomething();
Now I want to do ...
3
votes
2answers
84 views
How many times the constructor is invoked?
I'm a beginner of C++ programing and I have a simple question regarding to the C++ class constructor.
How many times the constructor is invoked for the following code snip?
std::string s = ...
0
votes
2answers
74 views
Why is operator= and copy-constructor NOT implicitly generated in this case?
I have a struct like this:
/* Renderable definition */
struct Renderable
{
Renderable(VertexBufferPtr vertexBuffer, const Mat4& wvpMatrix, const Mat4& worldMatrix, const ...
0
votes
2answers
44 views
Force C++ class instances to change member value when copied or assigned
I have a class named Solution defined as below. I have only included the relevant code, and I have not written a custom copy or assignment operator.
class Solution {
public:
Solution() {
...
-3
votes
1answer
35 views
Why do we assign a value to head in the loop if it's not used?
public CarList(CarList cl)
{
if(cl == null) throw new NullPointerException();
if (cl.head == null)
head = null;
else
{
// Notice that you cannot issue head = cl.head; ...
0
votes
4answers
73 views
Copy constructor not working?
Somewhat new to OOP (i.e. C programmer converting to C++) and cannot figure out why my data members in my backpack class are empty. I make pass an array of potions to my backpack, yet the data ...
1
vote
1answer
41 views
boost::shared_* with copy constructor and assignment operator
I have a class that contains a boost::shared_array member. The other members are not dynamic - just a bunch of ints, no pointers. I would expect that the default copy constructor for such a class ...
3
votes
1answer
92 views
Can I make the copy constructor private and still use the default implementation
I think this impossible but I might as well ask.
Can I declare a private Copy-Constructor and still use the default implementation?
Background: I have a class with very big vectors and I do not want ...
4
votes
1answer
130 views
Convert object of custom template based iterator class to const_iterator
I'm studying OOP course (C++ is a base language) at university. My task is to implement own linked list template container class. I did it almost completely but faced with problem. It is known that ...
3
votes
2answers
82 views
Assigning base class members in copy assignment operator
I've got a class that inherits from a MSFT class, and therefore cannot be changed, and I'd like my derived class to have identical behavior for its copy constructor and copy assignment operator. The ...
0
votes
3answers
93 views
Calling constructor within overloaded assignment operator?
Basically, is it acceptable programming practice/style to call a constructor of a class within its overloaded assignment operator? If not, why not?
EXAMPLE:
so I have a class which has 3 data ...
0
votes
3answers
142 views
Java clone() method using new keyword and a copy constructor instead of super.clone()
When searching the net for possibilities how to make a deep copy of an object polymorphically, I found a solution that claims to solve many issues with the clone() method, e.g. the impossibility to ...
1
vote
1answer
92 views
How would I return a class from a function that doesn't have a copy constructor?
I'm using boost Asio, and the following function will not compile.
udp::resolver Create_UDP_Socket(){
boost::asio::io_service io_service;
udp::socket s(io_service, udp::endpoint(udp::v4(), ...
1
vote
1answer
79 views
Decorator pattern - how do I NOT call the copy constructor at initialization?
I have an issue trying to use the decorator pattern. The constructors are printing out addresses for debugging. Compiled with:
g++ -g -o go Decorator.cpp
My simplified code:
#include ...
-1
votes
3answers
67 views
Copy constructor for templates
Copy constructor is failing in the following code. I have clipped the code for clarity
#include <iostream>
#include <stdio.h>
#include <assert.h>
namespace my {
template ...
4
votes
2answers
136 views
Why does resize() cause a copy, rather than a move, of a vector's content when capacity is exceeded? [duplicate]
Given class X below (special member functions other than the one explicitly defined are not relevant for this experiment):
struct X
{
X() { }
X(int) { }
X(X const&) { std::cout ...
0
votes
1answer
49 views
If I'm making a copy of an NSObject subclass, does its properties of type “UIViewAnimationOptions” and type BOOL need to be copied? If so, how?
I have my own NSObject subclass with which I'm implimenting the NSCopying protocol. In my copyWithZone method, I'm copying over the properties and values like
myCopy.boolProp = self.boolProp;
but ...
0
votes
2answers
36 views
Cannot refer to a class object A from the same class?
public class Car implements Cloneable{
private String name;
private int price;
Car(String name, int price)
{
this.name = name;
this.price = price;
}
//copy constructor 1
Car(Car a)
{
...




