Move
•The Move operation moves,
not copies, the elements from one container to another.
•In the case of a
vector, Move works by simply transferring the internal array. For other containers, Move is
implemented similarly.
•Move makes it possible to use a container to assemble
elements in one part of a system, and then move them to another
part of the system.