Article Discussion
The Law of The Big Two
Summary: Welcome to the first installment of Smart Pointers, a monthly- ish column written exclusively for The C++ Source. Here, two seasoned [1] programmers—Bjorn Karlsson and Matthew Wilson—carefully dissect C++ idioms, tricks, and power techniques. To make up for the fact that these are very serious topics, we shall occasionally expose you to really crummy programming jokes, too. Now, who said there was no such thing as a free lunch? In this instalment the authors update The Law of The Big Three, and explain which of the three magic member functions is often not needed.
37 posts on 3 pages.      
« Previous 1 2 3 Next »
The ability to add new comments in this discussion is temporarily disabled.
Most recent reply: May 9, 2008 9:32 AM by
Chuck
Posts: 32 / Nickname: cda / Registered: February 11, 2003 0:06 PM
The Law of The Big Two
October 1, 2004 8:00 AM      
In this inaugural installment of their new column, Matthew Wilson and Bjorn Karlsson update the well-known Law of The Big Three, explaining which one of those member functions is not always needed.

www.artima.com/cppsource/bigtwo.html
Colin
Posts: 1 / Nickname: craffert / Registered: October 1, 2004 9:12 AM
Final version of constructor not exception-safe.
October 1, 2004 1:23 PM      
The problem is that we cannot depend on the order of initialization. Here is the final version of the constructor from the article:

Example() :
p_(new SomeResource()),
p2_(new SomeResource()) {}

The second call to new can occur before p_ is initialized with the result of the first call to new. If the second call throws an exception, the result of the first call will be leaked.

The only way to be certain that this code is exception-safe is the unfortunate method of initializing the members inside the constructor.

Example()
{
p_.reset(new SomeResource());
p2_.reset(new SomeResource();
}
indranil
Posts: 4 / Nickname: indranilb / Registered: February 25, 2004 11:41 PM
Re: Final version of constructor not exception-safe.
October 2, 2004 0:54 AM      
It is safe. The commas in the member initialisation list are sequence points. Therefore in the example the first SomeResource will be allocated, constructed and assigned to p_ before the second SomeResource begins construction.

This only works in constructor member initialisation lists. You're right that for function calls this would not be exception safe.

foo(RAII(new X()), RAII(new X());

The above code would not be safe because, as you pointed out, the two X objects could be created before either is assigned to the RAII wrappers. So if the first new X() succeeded and the second new X() threw, then the RAII would not clean up the first X.
Vesa
Posts: 5 / Nickname: vkarvone / Registered: June 14, 2004 5:19 AM
Re: The Rule of The Big Two
October 2, 2004 9:49 AM      
I just wanted to note that the delete -operator does nothing if the pointer given to it is 0. This means that the checks in the following code snippet taken verbatim from the article are unnecessary.
    if (p_)
      delete p_;
    if (p2_)
      delete p2_;

I mention this, because many unnecessary "safety idioms", like this, get picked up by newbie programmers. Unnecessary checks only increase code complexity.
Vesa
Posts: 5 / Nickname: vkarvone / Registered: June 14, 2004 5:19 AM
Re: The Rule of The Big Two
October 3, 2004 1:39 PM      
After a diligent rereading of the article, I had to grab the keyboard again. The below code taken from the article is extremely error-prone:

template <typename T> class RAII {
// ...
operator T*() {
return p_;
}

operator const T*() const {
return p_;
}
// ...
};


It is just too easy to accidentally return (or pass as an argument) a dangling pointer from (to) a function when the conversion from a smart pointer to a plain pointer is implicit. I'm very disappointed that the authors, who really should know better, do not mention this in the article. Having debugged bugs caused by conversion operators like above, I can only advice everyone to never provide such dangerous implicit conversions.
Matthew
Posts: 20 / Nickname: bigboy / Registered: June 14, 2004 10:43 AM
Re: The Rule of The Big Two
October 3, 2004 3:14 PM      
Agreed, with contrition <g>. We'll ask Chuck to amend the article so.
Matthew
Posts: 20 / Nickname: bigboy / Registered: June 14, 2004 10:43 AM
Re: The Rule of The Big Two
October 3, 2004 3:18 PM      
Gah! I'd expected that the reply I just made would have been sub-threaded, or some such, to indicate which post it was a response to.

It was responding to the comment regarding the redundant ifs around the deletions
Matthew
Posts: 20 / Nickname: bigboy / Registered: June 14, 2004 10:43 AM
Re: The Rule of The Big Two
October 3, 2004 3:27 PM      
[This is a reply to the "extremely error-prone" issue.]

I think you've, perhaps reasonably, mistaken the intent of the RAII class. As stated in the text, it is "intended mainly for the purpose of adding RAII to simple classes".

I concede, in hindsight, that that should be better expressed, i.e., something along the lines of "implicit conversions are dangerous (which I assure you we do know <g>), and should not be used in smart pointer classes in general. There are much better alternatives for generalised treatment of raw and smart pointers, which we intend to deal with in a future instalment. RAII does have them, however, because it is solely intended for use inside other classes, and to be a plug in replacement for raw pointers in that context."

Alternatively, we could just have dropped the implicit conversions, which would barely have troubled our use of the class, and saved you consternation and our readers any confusion.

In hindsight, the latter approach is probably the better one. I'll get together with Bjorn, and we'll look into adjusting the article accordingly.

Thanks for the keen eye, and the willing fingers. :-)
Daniel
Posts: 5 / Nickname: teske / Registered: October 3, 2004 4:54 PM
Re: The Rule of The Big Two
October 3, 2004 10:02 PM      
>Example(const Example& other)
> : p_(new SomeResource(other.p_ ? *other.p_ : 0)),
> p2_(new SomeResource(other.p2_ ? *other.p2_ : 0)) {}

Isn't that supposed to be:
Example(const Example& other)
: p_(other.p_.get()? new SomeResource( *other.p_) : 0),
p2_(other.p2_.get()? new SomeResource( *other.p2_): 0)
Daniel
Posts: 5 / Nickname: teske / Registered: October 3, 2004 4:54 PM
Re: The Rule of The Big Two
October 3, 2004 11:09 PM      
I understand why the authors didn't want to use auto_ptr, but the standard has another less known smart pointer:
const auto_ptr<>

const auto_ptr<> doesn't allow copy constructing and operator=. (Because both take a non-const reference).
It can't release() its ownership and it can't be reset().

The only valid constructor for const auto_ptr takes a plain pointer. So a const auto_ptr accuires ownership at the point of construction and owns the object until its destruction.

const auto_ptr<> fits RAII better than auto_ptr<>.
Because const auto_ptr<> has a very clear meaning, it should be used where possible. (The example isn't fleshed out enough to say for sure if it could be used.)
Vesa
Posts: 5 / Nickname: vkarvone / Registered: June 14, 2004 5:19 AM
Re: The Rule of The Big Two
October 3, 2004 11:12 PM      
> I think you've, perhaps reasonably, mistaken the intent of
> the RAII class. As stated in the text, it is "intended
> mainly for the purpose of adding RAII to simple
> classes
".

I did read that line and I understood the intention of the class on the first reading. (That's why I emphasized being diligent.) However, being an exercise tutor on a C++ course and recommending innocent students to read this (otherwise excellent!) article, I simply can't let things like this slip through without critique.

> Alternatively, we could just have dropped the implicit
> conversions, which would barely have troubled our use of
> the class, and saved you consternation and our readers any
> confusion.

Yes. I think that would have been the better choice. It just doesn't take a lot of effort (or a lot of lines) to provide a few more operators. Those few lines would very likely save someone from a debugging/fixing nightmare.
Bjorn
Posts: 9 / Nickname: bfk / Registered: August 4, 2004 9:28 AM
Re: The Rule of The Big Two
October 3, 2004 11:18 PM      
Hello Vesa,

> I did read that line and I understood the intention of the
> class on the first reading. (That's why I emphasized being
> diligent.) However, being an exercise tutor on a
> C++ course and recommending innocent students to read this
> (otherwise excellent!) article, I simply can't let things
> like this slip through without critique.

You are absolutely right (and diligent!).

> Yes. I think that would have been the better choice. It
> just doesn't take a lot of effort (or a lot of lines) to
> provide a few more operators. Those few lines would very
> likely save someone from a debugging/fixing nightmare.

I'll update the article during the day. Thanks!

Bjorn
Bjorn
Posts: 9 / Nickname: bfk / Registered: August 4, 2004 9:28 AM
Re: The Rule of The Big Two
October 4, 2004 0:03 AM      
Hello Daniel,

> Isn't that supposed to be:
> Example(const Example& other)
> : p_(other.p_.get()? new SomeResource( *other.p_) :
> p_) : 0),
> p2_(other.p2_.get()? new SomeResource( *other.p2_):
> r.p2_): 0)

No, the original RAII class had an implicit conversion to T*, so there was no (need for) get(). However, the constructor of the Example class always allocates (and only deallocates in the destructor) p_ and p2_, so the code should be:

Example(const Example& other) :
p_(new SomeResource(*other.p_)),
p2_(new SomeResource(*other.p2_)) {}

Cheers,
Bjorn
Bjorn
Posts: 9 / Nickname: bfk / Registered: August 4, 2004 9:28 AM
Re: The Rule of The Big Two
October 4, 2004 0:14 AM      
> I understand why the authors didn't want to use auto_ptr,
> but the standard has another less known smart pointer:
> const auto_ptr<>

Good point! But having a member of type const auto_ptr makes implementing the copy assignment operator problematic.

> const auto_ptr<> doesn't allow copy constructing and
> operator=. (Because both take a non-const reference).
> It can't release() its ownership and it can't be reset().

Exactly. This is a nice idiom for managing scoped resources (although boost::scoped_ptr is a better choice, in my opinion).

> const auto_ptr<> fits RAII better than auto_ptr<>.
> Because const auto_ptr<> has a very clear meaning, it
> should be used where possible. (The example isn't fleshed
> out enough to say for sure if it could be used.)

It couldn't, due to the copy assignment operator. But a future article talks about this very topic, including the use of const auto_ptr.

Cheers,
Bjorn
Uwe
Posts: 4 / Nickname: uwe / Registered: August 27, 2003 8:00 PM
Re: The Rule of The Big Two
October 4, 2004 0:28 AM      
Why stop here?

Why not make it "The Rule of The Big Zero"?

When the object is copied, you will either want to have reference counting or deep copy semantic for its owned resources.

If you opt for reference semantics, a suitable smart pointer can just do it.

To enable deep copy semantic, the smart pointer would need to accept some copy mechanism function (object) pointer. You would either use a creation function rsp. a factory function if a specific type has to be created, or make use of the clone idiom if a polymorphic copy is needed. (If you are not afraid of Mad COW Disease, you could even try to figure out a generic COW solution.)

Some very special cases might remain unsolved, but often the "Rule of The Big Zero" would be a good - and probably very attractive - solution.
37 posts on 3 pages.
« Previous 1 2 3 Next »