命名空间
变体
操作

std::swap(std::valarray)

来自 cppreference.com
< cpp‎ | numeric‎ | valarray
 
 
 
 
定义在头文件 <valarray>
template< class T >
void swap( std::valarray<T>& lhs, std::valarray<T>& rhs ) noexcept;
(自 C++11 起)

专门化了 std::swap 算法用于 std::valarray。交换 lhsrhs 的内容。调用 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 交换
(公有成员函数) [编辑]