命名空间
变体
操作

std::valarray<T>::operator=

来自 cppreference.com
< cpp‎ | numeric‎ | valarray
 
 
 
 
valarray<T>& operator=( const valarray<T>& other );
(1)
valarray<T>& operator=( valarray<T>&& other ) noexcept;
(2) (自 C++11 起)
valarray<T>& operator=( const T& val );
(3)
valarray<T>& operator=( const std::slice_array<T>& other );
(4)
valarray<T>& operator=( const std::gslice_array<T>& other );
(5)
valarray<T>& operator=( const std::mask_array<T>& other );
(6)
valarray<T>& operator=( const std::indirect_array<T>& other );
(7)
valarray<T>& operator=( std::initializer_list<T> il );
(8) (自 C++11 起)

替换数值数组的内容。

1) 复制赋值运算符。如果 size() != other.size(),首先使用 resize(other.size()) 调整 *this 的大小。将 *this 中的每个元素分配为 other 中对应元素的值。
2) 移动赋值运算符。用 other 的内容替换 *this 的内容。此操作后,other 的值未指定。如果 T 具有非平凡的析构函数,此操作的复杂度可能是线性的,但在大多数情况下是恒定的。
3)val 的副本替换 *this 中的每个值。
4-7) 用广义下标运算的结果替换 *this 的内容。如果 size() 不等于 other 的长度,或者如果左侧的任何值依赖于右侧的值(例如 v = v[v > 2]),则行为未定义。
8) 分配初始化列表 il 的内容。等效于 *this = valarray(il)

内容

[编辑] 参数

other - 要分配的另一个数值数组(或掩码)
val - 初始化每个元素的值
il - 要分配的初始化列表

[编辑] 返回值

*this

[编辑] 异常

1,3-8) 可能抛出实现定义的异常。

[编辑] 示例

#include <iomanip>
#include <iostream>
#include <valarray>
 
void print(const char* rem, const std::valarray<int>& v)
{
    std::cout << std::left << std::setw(36) << rem << std::right;
    for (int n : v)
        std::cout << std::setw(3) << n;
    std::cout << '\n';
}
 
int main()
{
    std::valarray<int> v1(3);
    v1 = -1; // (3) from a scalar 
    print("assigned from scalar: ", v1);
 
    v1 = {1, 2, 3, 4, 5, 6}; // (8): from initializer list of different size
    print("assigned from initializer_list:", v1);
 
    std::valarray<int> v2(3);
    v2 = v1[std::slice(0, 3, 2)]; // (4): from slice array
    print("every 2nd element starting at pos 0:", v2);
 
    v2 = v1[v1 % 2 == 0]; // (6): from mask array
    print("values that are even:", v2);
 
    std::valarray<std::size_t> idx = {0, 1, 2, 4}; // index array
    v2.resize(4); // sizes must match when assigning from gen subscript
    v2 = v1[idx]; // (7): from indirect array
    print("values at positions 0, 1, 2, 4:", v2);
}

输出

assigned from scalar:                -1 -1 -1
assigned from initializer_list:       1  2  3  4  5  6
every 2nd element starting at pos 0:  1  3  5
values that are even:                 2  4  6
values at positions 0, 1, 2, 4:       1  2  3  5

[编辑] 缺陷报告

以下行为变更缺陷报告已追溯应用到先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 624 C++98 重载 (4-7) 的行为
不清楚如果 other 的长度不等于 size()
行为
在此情况下未定义
LWG 630 C++98 复制赋值运算符的行为
如果 size() != other.size(),则行为未定义
调整大小 *this
首先在这种情况下
LWG 2071 C++11 移动赋值运算符调整大小
*this 如果 size() != other.size()
不需要
在这种情况下调整大小