In boost::scoped_ptr operator* and operator-> are declared const functions, though they return T& and T* which potentially allows clients to change the underlying data. This violates the idea of logical constness (Myers, Effective C++)

Shouldn't the const functions have had the signature ?

const T& operator*() const;
const T* operator->() const;
link|improve this question

+1: Good question. You're wrong, but good question. (Consider T* const.) – Lightness Races in Orbit Jul 17 '11 at 1:21
"This violates the idea of logical constness" and how, according to you, does it violate logical constness? – curiousguy Nov 22 '11 at 3:05
feedback

3 Answers

up vote 5 down vote accepted

The fundamental issue here is that scoped_ptr objects behave more like pointers rather than class objects (even though scoped_ptr instances are in fact class objects).

The smart pointer classes provided by Boost are designed to preserve raw pointer semantics as much as possible while providing additional functionality like reference counting or (in this case) RAII semantics.

To that end, the operator*() and operator->() members of scoped_ptr is written so that it's "constness behavior" essentially matches that of a raw pointer.

Consider this situation with "dumb" pointers:

// Can change either Foo or ptr.
Foo* ptr;
// Can't change Foo via ptr, although ptr can be changed.
const Foo* ptr;
// Can't change ptr, although Foo can be changed via ptr.
Foo* const ptr;
// Can't change Foo or ptr.
const Foo* const ptr;

The scoped_ptr analogs would look like this:

// Can change either Foo or ptr.
scoped_ptr<Foo> ptr;
// Can't change Foo via ptr, although ptr can be changed.
scoped_ptr<const Foo> ptr;
// Can't change ptr, although Foo can be changed via ptr.
const scoped_ptr<Foo> ptr;
// Can't change Foo or ptr.
const scoped_ptr<const Foo> ptr;

The way the operators were written makes the above code snippet possible, even though scoped_ptr isn't actually a raw pointer.

In all cases, the code needs to be able to dereference ptr. By making the operators const, the dereference/member-access operators can be called on both const and non-const scoped_ptrs.

Note that if a user declares a scoped_ptr<Foo>, it would have these members:

Foo& operator*() const;
Foo* operator->() const;

while a scoped_ptr<const Foo> would have these members:

const Foo& operator*() const;
const Foo* operator->() const;

So the const-correctness behavior of pointers is actually preserved this way.

But no more, otherwise they wouldn't be smart pointers!

link|improve this answer
"pointers rather than objects" actually pointers are objects – curiousguy Nov 22 '11 at 3:02
@curiousguy: That may be true (depending on what definition of "object" you use), but I make the distinction for the purposes of explaining why the smart pointers are designed the way they are with respect to const correctness. That being said, I've changed it to a "class object" to avoid any more misunderstandings. – In silico Nov 24 '11 at 3:41
My definition is the C++ definition: an object is a region of storage. An int variable is an object. – curiousguy Nov 24 '11 at 4:19
"behave more like pointers rather than class objects" to behave "like a class object" is a subjective notion. Some classes are meant to have value semantic, others have reference semantic. Iterators have reference semantic WRT to the data they refer to. It's a matter of intended class semantic. – curiousguy Nov 24 '11 at 4:34
@curiousguy: So? Smart pointers are still class objects, as opposed to native pointers, no? The issue at hand in the OP's question is why are the smart pointers operators defined in this way wrt constness as opposed to say, a vector's array subscript operator. It's because of the fact smart pointers classes are supposed to act like pointers, unlike other classes like vectors where they are values in their own right. – In silico Nov 24 '11 at 18:03
show 5 more comments
feedback

A scoped_ptr<T> is like a T*. It is not like a T* const.

A scoped_ptr<T const> is like a T const* (which you might write as const T*) and only then would you expect operator* and operator-> to return const things.

link|improve this answer
feedback

In boost::scoped_ptr operator* and operator-> are declared const functions, though they return T& and T* which potentially allows clients to change the underlying data.

The "underlying data" is not part of the smart pointer value. Two (smart) pointers are equal iff they point to the same object: a == b iff &*a == &*b.

This violates the idea of logical constness (Myers, Effective C++)

No, it does not:

The logical value of a smart pointer depends only on what it points to.

Dereferencing a smart pointer does not change what it points to.

So dereferencing a smart pointer does not change its logical value (or its state if you prefer).

QED

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.