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 ...
1
vote
5answers
166 views

Is this copy constructor doing a deep copy or shallow copy?

I have a class called Directory with certain members followed by a copy constructor. class Directory{ private: char * Name; int Telephone_Number; char * Address; ...
0
votes
1answer
83 views

What's it called when I define a subclass just to abstract away the details of the base class's constructor?

I'm writing a library that provides the ability for two clients to communicate using ZeroMQ PUB/SUB sockets. Each client application instantiates either a broadcaster endpoint or a receiver endpoint, ...
1
vote
1answer
116 views

How delegate from copy constructor to universal copy constructor template?

If I want to write a universal copy constructor (one that will take any argument type), it's easy enough to do: class Widget { public: template<typename T> Widget(T&& other); }; ...
0
votes
2answers
98 views

C++ Constructors With References and Pointers?

I found this example interview question and would like some help understanding it: #include <iostream> class A { public: A(int n = 0) : m_n(n) { ++m_ctor1_calls; } ...
0
votes
1answer
80 views

copy constructor of a vector-derived class

I have the following classes. class CA { ... }; class CB: public vector<CA> { ... }; How shall I implement the copy constructor of CB? i.e., CB(CB& cb). How do I copy the content of ...
0
votes
2answers
131 views

What is a converting constructor in C++ ? What is it for? [closed]

I have heard that C++ has something called "conversion constructors" or "converting constructors". What are these, and what are they for? I saw it mentioned with regards to this code: class MyClass ...
-1
votes
1answer
150 views

Operator++, Operator+, Copy constructor in C++ [closed]

Problem Description I am trying to understand how operators work in C++, to do that I try to write my own Integer class and override default operators, also I try to write my own constructor, copy ...
0
votes
1answer
89 views

Copy constructor define and declare difference?

I have a class Base and Class derived . If i declare a copy constructor in my class, will the compiler define the copy constructor while compiling? What will happen if the Derived class copy ...
0
votes
3answers
58 views

Assignment operator and copy constructor after matricies multiplication

Have problem with copy constructor and assignment operator. Have written code to multiply matricies: Matrix& Matrix::operator * (const Matrix &second) const { // Create result matrix ...
0
votes
3answers
106 views

Invoking a copy constructor in C++

I have two pointers to class A declared globally A* a; A* b; int main(){ a = new A(...); } How should I invoke a copy constructor to make b as copy BY VALUE of a. class A does not ...
0
votes
2answers
60 views

Local Variable and Variable Passed as Argument

I have doubt in following piece of code. Function fun1 and fun2 are both same. In one I have declared a local variable and in another a variable is passed by argument. Then why in case of fun1 copy ...
-1
votes
2answers
70 views

assignment of two QObject [closed]

i have two class names "mamad" and "student" and both of them are inherit from my class "Base" that "Base" inherit from QObject in Student Class i have a field : "subject" that is a mamad and i ...
0
votes
2answers
107 views

Copy Control in C++

template <class Type> class Queue { Queue(): head(0), tail(0) { cout << "Queue--default constructor called" << endl; } Queue(const Queue &Q): head(0), ...
1
vote
2answers
166 views

Initialize a const member without a copy constructor with a given value? [duplicate]

Possible Duplicate: How to initialize a const field in constructor? I have this class: class Foo { private: ... public: Foo() : ... {} // no other constructors ... }; and ...
2
votes
4answers
95 views

Сopy constructor doesn`t work

I`m writing string class by myself. And I dont know how to write Сopy constructor. I have such code. class S { private: char *string; int l; public: ...
0
votes
1answer
126 views

copy constructor with multiple Inheritance

How Can I write a copy constructor with Multiple Inheritance ? B1 and B2 is inherited by D there is no diamond in inheritance chain. I need to write a copy constructor in D such that it calls copy ...
0
votes
2answers
207 views

C++ inherited copy constructor call ?

I have class B derived from class A. I call copy constructor that I implemented myself for an object of class B. I also implemented myself a constructor for class A. Is this copy constructor ...
1
vote
3answers
69 views

How can I trigger the copy constructor for data members?

I tried this: class cls1{ public: cls1(){ cout << "cls1 constructor\n";} cls1 (cls1 & o){ cout << "cls1 copy constructor\n";} }; class cls2{ public: cls2 () { cout ...
4
votes
7answers
172 views

How to use both default and own copy constructor in C++?

I have a long class with a lot of members. I want to write copy constructor for it. But if I write my own copy constructor I lost access to deafult copy constructor. I just want to repair a few ...
2
votes
3answers
290 views

Can I write a copy constructor for an Abstract base class using pointer instead of reference (&)?

Was asked this question in IBM ISL interview. Can I write a copy constructor for an Abstract base class using pointer instead of reference (&)? I think it can be used. Any comments/suggestions? ...
1
vote
5answers
145 views

Making a copy constructor

I have a question about copy constructors. I see these examples on internet. the first one says without copy constructors if you change something on student2 the same field change also on student1. ...
6
votes
4answers
193 views

Conversion by constructors

Class X -> converted to Y by two ways 1) constructors, and 2) by conversion functions. I understood the single argument constructor is used for conversion. In the specification: An ...
0
votes
2answers
40 views

Reseting object m_object = Object(new, parameters);

I have a simple class: class Histogram { int m_width; int m_height; int m_sampleSize; int m_bufferWidth; int m_bufferHeight; uint8* m_buffer; int m_size; public: ...
0
votes
2answers
70 views

c++ user defined member in copy constructor

class A { std::string name; public: A(const A & rhs) { name = rhs.name; } }; In copy constructor of class A above, will the assignment operator of string class is called or copy constructor of ...
0
votes
3answers
85 views

What is the better way to define a construtor in C++?Initialization list or Initialization in Ctor Body? [duplicate]

Possible Duplicate: Initializing in constructors, best practice? Advantages of using initializer list? I have the following two ways to define the constructor in the Point Class : class ...
4
votes
2answers
132 views

Why copy constructor not getting called in this case

Say, I have a class A Now when I am doing A a(A()); what exactly happens?
0
votes
2answers
69 views

C++, Assignment to class instance from a function call?

I understand, or at least have an Idea of, why the following code does not work: class Spambar { public: Spambar() {}; Spambar(Spambar& sb) {}; Spambar operator + ...
4
votes
4answers
421 views

what exactly reference counting in c++ means?,

What exactly is reference counting? In particular, what is it for C++? What are the problems we can face if we don't handle them? Do all languages require reference counting?
-1
votes
2answers
76 views

When constructor is called and when operator function

class apple { public : operator orange () const { cout << "operator"; } } ; class orange { public : orange (apple &x ){cout <<"constructor";} }; void f(orange o) { cout ...
0
votes
6answers
416 views

Deep Copying in Java

I have a Java class, Node as follows : class Node { public ArrayList<Node> nbrs; } Each Node object contains a list of all its neighbours within the ArrayList nbrs, and nothing else. ...
0
votes
3answers
167 views

I'm confused about copy-constructor in C++ [duplicate]

Possible Duplicate: Why copy constructor is not called in this case? In the following code, I constructed three variables, a1, a2 and a3. There's a example in C++ Primer p.476: string ...
0
votes
3answers
199 views

Which pointer assignment is better (C++)

foo.h #include "class1.h" class foo{ private: class1* class1ObjectPointer; public: foo(); virtual ~foo(); void foomethod(); } foo.cpp (VERSION 1) ...
0
votes
4answers
113 views

Copy constructors in C++

I have these classes: first: class C { public: C(const C& c):_s(c._s){} c():_s(""){} string _s; } second: class C2: public C { public: C2(const C2 & ...
-2
votes
4answers
393 views

C++ pass by reference to constructor. Will member be a full private copy?

In C++ I have a constructor that accepts an object of class descriptor. This class has recently grown in size and I need to pass it by reference more. If I pass it by reference into the following ctor ...
-3
votes
1answer
146 views

Copy constructor default case [closed]

I am going through the file Intro To Object Oriented I am not able to understand the use of default copy constructor Please explain in simple words If possible I mean the real use of the default ...
5
votes
2answers
234 views

Copy Constructor is not invoked [duplicate]

Possible Duplicate: Why copy constructor is not called in this case? Consider the sample program below: #include <iostream> using namespace std; class sample { private: ...
1
vote
3answers
190 views

Why aren't copy constructors “chained” like default constructors or destructors?

This might be a question with an obvious answer or a duplicate. If so, sorry, I'll delete it. Why aren't copy constructors chained (like default ctors or dtors) so that before the derived class's ...
0
votes
1answer
227 views

Java shallow copy super class instance for sub class instance

I want to pass an instance of a super class to a constructor of a sub class. My first idea was to swap the instance of the super class in the sub class similar to javascripts prototypes, but I was ...
5
votes
2answers
176 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 << ...
2
votes
2answers
78 views

Copy Constructor going to base constructor and overwriting copied values

Constructor Conundrum, I have these two constructors. One is for making a copy of the class and the other is the standard constructor. I need to call the first one so that I can use the rule in it. I ...
0
votes
0answers
289 views

Copy Constructor error with Binary Search Tree

I'm making a binary search tree. I need to implement a copy constructor and assignment operator. They, to my understanding have the exact same code, but they don't work when they are called. the ...
2
votes
2answers
112 views

Copy-construct from reference

Consider this code class Foo { private: Bar bar; //note: no reference public: Foo(Bar& b) : bar(b) { } }; Will Bar get copy-constructed?
0
votes
2answers
194 views

Using conversion constructor implicitly requires copy constructor

Im learning C++ and I ran into something strange that I couldn't find any info on in my C++ book, or on the web. The code below is simply a test of the conversion constructor: Test(int). testFunction ...
0
votes
4answers
267 views

Java: Copy Constructor not going as planned

I have a bit of a problem. I'm making a Finite Automata checker. Given an input, and the DFA, does it end on a accepting state. My problem is creating a new DFA_State from another's target. ...
3
votes
4answers
543 views

C++ constructor calling order

So i was working on some app and this problem stikes me. When i wanted to initialize an object of my class, a copy constructor, along with default constructor has been called. Example class A: ...
0
votes
2answers
138 views

what does ' t ' denote in copy constructor?

#include <iostream> using namespace std; class tester { public: int a; tester( int x ) { a = x; } tester( tester &t ) { cout << t.a; } }; int main() { tester t(10); ...
2
votes
5answers
1k views

Call default copy constructor from within overloaded copy constructor

I need to write a copy constructor that deep copies the contents of a std::shared_ptr. However, there are a bunch of variable int a, b, c, d, e; also defined in the class. Is there a way to generate ...
1
vote
7answers
325 views

Copy constructor converts from const to non-const?

Consider the following : class A { public: int xx; A(const A& other) { cout << "A cctor" << endl; /* do some stuff */ } A(int x) : xx(x) {} /* ...
6
votes
3answers
248 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 ...

1 2