Re: Implicit move constructor rules in c++0x still badly broken?
On Feb 23, 3:46 pm, "Martin B." <0xCDCDC...@gmx.at> wrote:
#define _GLIBCXX_DEBUG
#include <iostream>
#include <vector>
// An always-initialized wrapper for unsigned int
struct Number
{
Number(unsigned x = 0) : value(x) {}
operator unsigned() const { return value; }
private:
unsigned value;
};
struct Y
{
// Invariant: length == values.size(). Default ctor is fine.
// Maintains the invariant
void resize(unsigned n)
{
std::vector<int> s(n);
swap(s,values);
length = Number(n);
}
bool operator==(Y const& rhs) const
{
return this->values == rhs.values;
}
friend std::ostream& operator<<(std::ostream& s, Y const& a)
{
for (unsigned i = 0; i < a.length; ++i)
std::cout << a.values[i] << " ";
return s;
};
private:
std::vector<int> values;
Number length;
};
int main()
{
std::vector<Y> z(1, Y());
Y a;
a.resize(2);
z.push_back(a);
std::remove(z.begin(), z.end(), Y());
std::cout << z[1] << std::endl;};
The problem AFAICT in this example is that the implicit generated move
constructor for Y breaks the (implicit) invariant of Y. The invariant
is that "values.size() == length".
The only way I can see to fix this example is to extend the rules, so
no implicit move constructor gets generated for classes that have data
members with user defined default constructor.
Now imagine Number instead was a typedef for int. You would then add a
default constructor to Y, to make sure it gets initialize to zero. The
implicitly generated move constructors would still break the invariant
that "values.size() == length". to fix this issue one would therefore
also have to add the rule that implicit move constructor generation is
disabled, if Y itself has a default constructor.
There is *way* too much confusion and mis-information in this thread.
I agree about the confusion.
Confusions and misunderstandings are fragile things though, they
disappears when confronted with clear argumentation that makes sense
of the situation. One could argue that the current rules cause some of
this confusion. The cases where copy semantics silently changes into
move semantics are subtle, and what types of examples these change
matters for is not well understood.
Thanks, Patrik
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]