In the code show below, how do I assign rvalue to an object A in function main?

#include <iostream>

using namespace std;

class A
{
    public:
        int* x;
        A(int arg) : x(new int(arg)) { cout << "ctor" << endl;}
        A(const A& RVal) { 
            x = new int(*RVal.x);
            cout << "copy ctor" << endl;
        }
        A(A&& RVal) { 
            this->x = new int(*RVal.x);
            cout << "move ctor" << endl;
        }
        ~A()
        {
            delete x;
        }
};

int main()
{
    A a(8);
    A b = a;
    A&& c = A(4); // it does not call move ctor? why?
    cin.ignore();
    return 0;
}

Thanks.

link|improve this question

2  
Oh thanks for that, reading now :D – codekiddy Jan 5 at 9:25
You should use constructor init lists in all three constructors. – Cat Plus Plus Jan 5 at 10:40
feedback

1 Answer

up vote 1 down vote accepted

Any named instance is l-value.

Examples of code with move constructor:

void foo(A&& value) 
{
   A b(std::move(value)); //move ctr
}

int main()
{
    A c(5); // ctor
    A cc(std::move(c)); // move ctor
    foo(A(4)); 
}
link|improve this answer
A c(A(4)); does not call move ctor, why not? it call's copy ctor. why? thanks for response! – codekiddy Jan 5 at 9:24
@codekiddy: I've corrected my post. – alexm Jan 5 at 9:41
It calls just the constructor here: ideone.com/2Arx3 (The compiler is free to eliminate redundant constructor calls - copy or move.) – visitor Jan 5 at 9:42
1  
A c(factory()); is not perfect forwarding, it's copy elision/RVO. – Cat Plus Plus Jan 5 at 9:47
@Cat Plus Plus thanks for the correction. I modified the code to perform the perfect forwarding – alexm Jan 5 at 10:12
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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