std::swap(std::valarray)
来自 cppreference.com
定义在头文件 <valarray> 中 |
||
template< class T > void swap( std::valarray<T>& lhs, std::valarray<T>& rhs ) noexcept; |
(自 C++11 起) | |
专门化了 std::swap 算法用于 std::valarray。交换 lhs 和 rhs 的内容。调用 lhs.swap(rhs)。
内容 |
[编辑] 参数
lhs, rhs | - | 要交换内容的 valarray |
[编辑] 返回值
(无)
[编辑] 复杂度
恒定。
[编辑] 示例
运行此代码
#include <iostream> #include <valarray> void print(auto rem, const std::valarray<int>& v) { std::cout << rem << '{'; for (char sep[]{0, ' ', 0}; auto elem : v) std::cout << sep << elem, *sep = ','; std::cout << "}\n"; } int main() { std::valarray x{3, 1, 4, 1, 5}; std::valarray y{2, 7, 1, 8}; print("Before swap:\n" "x: ", x); print("y: ", y); std::swap(x, y); print("After swap:\n" "x: ", x); print("y: ", y); }
输出
Before swap: x: {3, 1, 4, 1, 5} y: {2, 7, 1, 8} After swap: x: {2, 7, 1, 8} y: {3, 1, 4, 1, 5}
[编辑] 参见
与另一个 valarray 交换 (公有成员函数) |