function
<string>
std::swap (string)
void swap (string& x, string& y);
Exchanges the values of two strings
This is an overload of the generic algorithm swap that improves its performance by mutually transferring ownership over their internal data to the other object (i.e., the strings exchange references to their data, without actually copying the characters): It behaves as if
x.swap(y) was called.Parameters
- x,y
- string objects to swap.
Return value
noneExample
|
|
Output:
Before the swap, buyer has money and seller has goods After the swap, buyer has goods and seller has money
Complexity
Constant.Iterator validity
Any iterators, pointers and references related to both x and y may be invalidated.Data races
Both objects, x and y, are modified.Exception safety
No-throw guarantee: this member function never throws exceptions.See also
- string::swap
- Swap string values (public member function)
- swap
- Exchange values of two objects (function template)
- swap_ranges
- Exchange values of two ranges (function template)