I was at a lecture with Bjarne Stoustrup recently, he was talking about c++ 11 and why it made sense.
One of his examples of new awesomeness was the news '&&' symbol for move constructors.
Then I want home and started thinking, "When would I ever need such a thing?".
My first example was the code below:
class Number {
private:
int value;
public:
Number(const int value) : value(value){
cout << "Build Constructor on " << value << endl;
}
Number(const Number& orig) : value(orig.value){
cout << "Copy Constructor on " << value << endl;
}
virtual ~Number(){}
int toInt() const{
return value;
}
friend const Number operator+(const Number& n0, const Number& n1);
};
const Number operator+(const Number& n0, const Number& n1){
return Number(n0.value + n1.value);
}
int main(int argc, char** argv) {
const Number n3 = (Number(2) + Number(1));
cout << n3.toInt() << endl;
return 0;
}
This code does exactly what the move constructor is supposed to solve. The n3 variable is constructed from a reference to the value returned from the '+' operator.
Except this is the output from running the code:
Build Constructor on 1
Build Constructor on 2
Build Constructor on 3
3
RUN SUCCESSFUL
What the output shows is that the copy constructor never gets called -- and this is with optimizations turned off. I'm having a hard time twisting the arm of the code enough to make it run the copy construtor. wrapping the result in a std::pair did the trick, but it kept me thinking.
Is the argument of move-constructors in operator arithmetic's actually a failed argument?
Why is'nt my copy constructor called and why is it called in :
using namespace std;
class Number {
private:
int value;
public:
Number(const int value) : value(value){
cout << "Build Constructor on " << value << endl;
}
Number(const Number& orig) : value(orig.value){
cout << "Copy Constructor on " << value << endl;
}
virtual ~Number(){}
int toInt() const{
return value;
}
friend const std::pair<const Number, const Number> operator+(const Number& n0, const Number& n1);
};
const std::pair<const Number, const Number> operator+(const Number& n0, const Number& n1){
return make_pair(Number(n0.value + n1.value), n0);
}
int main(int argc, char** argv) {
const Number n3 = (Number(2) + Number(1)).first;
cout << n3.toInt() << endl;
return 0;
}
With output:
Build Constructor on 1
Build Constructor on 2
Copy Constructor on 2
Build Constructor on 3
Copy Constructor on 3
Copy Constructor on 2
Copy Constructor on 3
Copy Constructor on 2
Copy Constructor on 3
3
RUN SUCCESSFUL
I would like to know what the logic is and why the pair operator basically screws up the performance?
update:
I did another modification and found that if I replaced make_pair with the actual templated constructor of the pair pair<const Number, const Number> this reduced the number of times the copy constructor got fired:
class Number {
private:
int value;
public:
Number(const int value) : value(value){
cout << "Build Constructor on " << value << endl;
}
Number(const Number& orig) : value(orig.value){
cout << "Copy Constructor on " << value << endl;
}
virtual ~Number(){}
int toInt() const{
return value;
}
friend const std::pair<const Number, const Number> operator+(const Number& n0, const Number& n1);
};
const std::pair<const Number, const Number> operator+(const Number& n0, const Number& n1){
return std::pair<const Number, const Number>(Number(n0.value + n1.value), n0);
}
int main(int argc, char** argv) {
const Number n3 = (Number(2) + Number(1)).first;
cout << n3.toInt() << endl;
return 0;
}
output :
Build Constructor on 1
Build Constructor on 2
Build Constructor on 3
Copy Constructor on 3
Copy Constructor on 2
Copy Constructor on 3
3
RUN SUCCESSFUL
So it would apear using make_pair is harmfull?

std::vector). Then the move constructor can be used to avoid copying the external resource. – Kerrek SB May 20 '12 at 11:05make_pairisn't harmful. The C++ specification allows copy elision; it does not require it. Compilers may elide copies under certain conditions, but they don't have to. Your particular compiler, under your particular compile settings, was able to elide the copy when you were directly constructing thepair, and was not able to when you were returning the value from someone else. Before declaring various bits of the C++ standard library to be "harmful", perhaps you should take the time to familiarize yourself with the standard and how different implementations can implement it. – Nicol Bolas May 20 '12 at 17:35