Possible Duplicate:
Can someone please explain move semantics to me?
Could someone point me to a good source or explain it here what are the move semantics?
Could someone point me to a good source or explain it here what are the move semantics? |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Forget about C++0x for the moment. Move semantics are something that is language independent -- C++0x merely provides a standard way to perform operations with move semantics. DefinitionMove semantics define the behaviour of certain operations. Most of the time they are contrasted with copy semantics, so it would be useful to define them first. Assignment with copy semantics has the following behaviour:
i.e. Assignment with move semantics has weaker post conditions:
Note that there is no longer any guarantee that UsesOne benefit of move semantics is that it allows optimisations in certain situations. Consider the following regular value type:
Assume also that we define two objects of type
Finally assume that we define an object
Now suppose we want to define a function to swap two We could do it the normal way with copy semantics.
However, this is unnecessarily inefficient. What are we doing?
If In our case, it's easy to move around objects of type
We simply move With this new move operation defined, we can define an optimised swap:
Another advantage of move semantics is that it allows you to move around objects that are unable to be copied. A prime example of this is C++0xC++0x allows move semantics through its rvalue reference feature. Specifically, operations of the kind:
Have move semantics when
To define move optimisations, you need to define a move constructor and move assignment operator:
As these operations have move semantics, you are free to modify the arguments passed in (provided you leave the object in a destructible state). ConclusionThat's essentially all there is to it. Note that rvalue references are also used to allow perfect forwarding in C++0x (due to the specifically crafted type system interactions between rvalue references and other types), but this isn't really related to move semantics, so I haven't discussed it here. |
||||
|
|
|
Basically, rvalue references allow you to detect when objects are temporaries and you don't have to preserve their internal state. This allows for much more efficient code where C++03 used to have to copy all the time, in C++0x you can keep re-using the same resources. In addition, rvalue references enable perfect forwarding. Have a look at this answer. |
|||
|
|
Here's the original brief introduction. |
|||
|
|
|
I read a ton of text explanations for about a year and didn't grasp everything about r-value references until I watch this excellent presentation by Scott Meyer : http://skillsmatter.com/podcast/home/move-semanticsperfect-forwarding-and-rvalue-references He explain in a way that is funny and slow enough to understand each thing that happens in the processes. I know, it 1h30 but really, it's the best explanation I've had in the last year. After having read the articles (like the other answers), watching this video did melt it together in my mind in a consistent way and few days after I was able to explain it to some colleagues and explain how to use std::unique_ptr (as it is related - it only allow move semantics, not copy) because it requires understanding of std::move(), that requires understanding move semantics. |
|||
|
|
|
You can read this : http://blogs.msdn.com/b/vcblog/archive/2009/02/03/rvalue-references-c-0x-features-in-vc10-part-2.aspx |
|||
|
|
|
glad to see such a question and I'm happy to share my point. I think you are asking about a bug-fix on the designation of the C++ language itself, not just another C++ language feature. The "bug" has been there for tens of year. That is, the copy constructor. Copy constructors seems very strange if you know in physics there are lots of things that can not be copied like energy and mass. That's just a joke, but in fact in the world of programming too, objects like exclusive file descriptors are not copyable. So C++ programmers and designers invented some tricks to deal with that. There are 3 famous: NRVO, NRVO (Named Return Value Optimization) is a technic that lets a function returns an object by value without calling the copy constructor. But the problem with NRVO is that though the copy constructor is not actually called, a
This is not a copy at all, but a "move". You could consider this kind of behavior as the prototype of a move semantic. But That was painful until, the C++0x move semantic is finally published and implemented by the compiler makers. In simple way, you could just think of move semantic as something same as the "copy" behavior of By the way in C++0x the My story will end now. Please refer to other posts if you want to know more about it like strange syntax and rvalue system. |
||||
|
|
Point me to a good source to explain what is move semantics. I think one should google first, then see the links, and when not satisfied, point in the question that one read this, this, and this, and one wasn't satisfied and why. But that's just my personal opinion – Armen Tsirunyan Jul 25 '11 at 13:18