Re: std::auto_ptr and const correctness
jens.muaddib@googlemail.com wrote:
On 14 Mai, 10:36, "Bo Persson" <b...@gmb.dk> wrote:
jens.muad...@googlemail.com wrote:
class Const
{
int i;
int* p_i;
Const() : i(-2), p_i(&i) {}
void modify() const
{
*p_i = 1;
}
};
A caller would assume that the object is not modified when
Const::modify() is called, so this causes confusion. To admit, this
example seems overly constructed and academic.
You can always modify some global variable and use that as part of the
objects state. What is the difference here?
The difference is that const states that the method does not modify
the object, or specifically, as I understand it, the memory where the
object is stored. This is why a const function cannot change the
address stored in a pointer, but the pointed object. In this example,
the memory location changes although the method is const, so the
contract is not followed and assumptions from the calling code might
be violated.
Well, why so complicated?
class weird {
weird& non_const;
weird(): non_const(*this) {}
// mutating operation
void modify();
// seemingly non-mutating operation
void inspect() const {
return non_const.modify();
}
};
So, if you can somehow access a non-const reference to an object, you can
modify it. Where that reference is stored is irrelevant, global, as member
or as parameter all work the same.
All in all, that doesn't surprise me the least. If you really want to, you
can get around it. The effort required to fix this perceived leak would be
enormous and require runtime checks (after all a pointer might point
somewhere else by now).
Uli
--
Sator Laser GmbH
Gesch?ftsf?hrer: Thorsten F?cking, Amtsgericht Hamburg HR B62 932
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]