Tagged Questions

4
votes
4answers
197 views

Why copy constructor is not called in this case?

Hello everybody. Here is the little code snippet: class A { public: A(int value) : value_(value) { cout <<"Regular constructor" <<endl; } A(cons …
1
vote
2answers
386 views

Matlab copy constructor

Hi, Is there a better way to implement copy construcor for matlab for a handle derived class other than adding a constructor with one input and explicitly copying its properties? …
2
votes
5answers
131 views

Copy constructor for a binary tree C++

I have a Tree class with the following definition: class Tree { Tree(); private: TreeNode *rootPtr; } TreeNode represents a node and has data, leftPtr and rightPtr. How do …
1
vote
4answers
114 views

C++ Class Inheritance problem

Hi I have two classes, one called Instruction, one called LDI which inherits from instruction class. class Instruction{ protected: string name; int value; public: …
0
votes
5answers
198 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 parame …
1
vote
8answers
175 views

Is it correct to use declaration only for empty private constructors in C++?

For example is this correct: class C { private: C(); C(const & C other); } or you should rather provide definition(s): class C { private: C() {}; …
-1
votes
5answers
237 views

Initializing an array in C++

I am trying to initialize an array of objects: SinglyLinkedList offeredClasses[22] = {SinglyLinkedList("CSCE101"),SinglyLinkedList("CSCE101L"),SinglyLinkedList("CSCE150E"),SinglyL …
3
votes
6answers
301 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 whos …
2
votes
3answers
126 views

Is there any advantage in using a reference argument in this function?

I have defined the following class: class Action { public: Action(){ _bAllDone = false; } void AddMove( Move & m ); private: std::deque<Move> _ …
0
votes
3answers
306 views

Linked list and copy constructor

I'm trying to write a basic, singly-linked list class in C++. I did it in my data structures class years back, but I can't remember the details. Should my Node class have a copy c …
1
vote
11answers
296 views

C++: Copy contructor: Use Getters or access member vars directly?

Have a simple container class: public Container { public: Container() {} Container(const Container& cont) //option 1 { SetMyString(cont.GetMyStr …
2
votes
4answers
189 views

Reducing code duplication between operator= and the copy constructor

I have a class that requires a non-default copy constructor and assignment operator (it contains lists of pointers). Is there any general way to reduce the code duplication betwee …
3
votes
7answers
510 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 …
1
vote
3answers
165 views

Parameter choice for copy constructor

I was recently asked in an interview about the parameter for a copy constructor. [Edited] As a designer of C++ language implementing copy constructor feature, why would you choose …
0
votes
3answers
402 views

stl vector.push_back() abstract class doesn’t compile

Hi, Let's say I have an stl vector containing class type "xx". xx is abstract. I have run into the issue where the compiler won't let me "instantiate" when i do something like the …

1 2 next
15 30 50 per page