Re: assignment operator and const members
On 11 Nov., 01:36, Jonathan Jones <clcppm-pos...@this.is.invalid>
wrote:
[..]
#include <iostream>
struct Object
{
Object(int data = 0) : data_(data) {}
Object(const Object& r) : data_(r.data_) {}
Object& operator=(const Object& r)
{
this->~Object();
return *new(this) Object(r);
}
void print() const
{ std::cout << this << ": " << data_ << std::endl; }
private:
const int data_;
};
int main()
{
Object obj(1);
obj.print();
obj = Object(2);
obj.print();
}
There had been given several good arguments against
the above proposed idiom, but I missed one: The code
causes undefined behavior. Reason for this is, that
Our Holy Standard does not say anything about the
state of obj after the assignment in the code, according
to 3.8 [basic.life]/7:
"If, after the lifetime of an object has ended and before
the storage which the object occupied is reused or released,
a new object is created at the storage location which the
original object occupied, a pointer that pointed to the
original object, a reference that referred to the original
object, or the name of the original object will automatically
refer to the new object and, once the lifetime of the new
object has started, can be used to manipulate the new object,
if:
[..]
? the type of the original object is not const-qualified, and,
if a class type, does not contain any non-static data member
whose type is const-qualified or a reference type, and[..]"
Note that the shown bullet 3 (still present in the most recent
draft N2798 as well) excludes your example as a well-defined
situation.
Greetings from Bremen,
Daniel Kr?gler
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]