Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

102
votes
3answers
8k 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?
51
votes
6answers
3k views

Rule-of-Three becomes Rule-of-Five with C++11?

So, after watching this wonderful lecture on rvalue references, I thought that every class would benefit of such a "move constructor", template<class T> MyClass(T&& other) edit and of ...
7
votes
3answers
339 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, ...
4
votes
5answers
164 views

When assigning in C++, does the object we assigned over get destructed?

Does the following code fragment leak? If not, where do the two objects which are constructed in foobar() get destructed? class B { int* mpI; public: B() { mpI = new int; } ~B() { delete ...
4
votes
3answers
480 views

Storing objects in STL vector - minimal set of methods

What is "minimal framework" (necessary methods) of object, which I will store in STL <vector>? For my assumptions: #include <vector> #include <cstring> using namespace std; class ...
3
votes
5answers
1k views

C++ Copy Constructor + Pointer Object

I'm trying to learn "big three" in C++.. I managed to do very simple program for "big three".. but I'm not sure how to use the object pointer.. The following is my first attempt. I have a doubt when ...
1
vote
5answers
82 views

Am I violating Rule of three?

I recently read, Rule of three and am wondering if I am violating it? In my GUI application, classes like MainFrame, Interface, Circuit, Breadboard etc. (class name are indicative) have a single ...
1
vote
4answers
90 views

Why is a non-default constructor NOT considered in the Rule of Three?

The rule of three (also known as the Law of The Big Three or The Big Three) is a rule of thumb in C++ that claims that if a class defines one of the following it should probably explicitly define all ...
1
vote
7answers
245 views

Unusual destructor behaviour when copying over stack variables

I wrote a test to check whether destructors were called before an overwriting assignment on a stack variable, and I can't find any rational explanation for the results... This is my test (in Visual ...
0
votes
1answer
116 views

Can anyone please give me an example of how to properly use “The Big Three” in C++? [closed]

Possible Duplicate: What is The Rule of Three? Hi, I've been reading about the topic, and many websites tell me about why do I need a ctor, copy ctor, and a dtor. But I have had trouble ...
0
votes
3answers
118 views

c++ inheritance question

I have a question about this: class A { int a; int* pa; public: A(int i):a(i) , pa(new int(a)) { cout<<"A ctor"<<a<<endl; } ~A() { delete pa; ...