std::valarray::operator+=,-=,*=,/=,%=,&=,|=,<<=,>>=
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
valarray<T> operator+=( const valarray<T>& v ); valarray<T> operator-=( const valarray<T>& v ); |
(1) | |
valarray<T> operator+=( const T& val ); valarray<T> operator-=( const T& val ); |
(2) | |
v
.v
.v
中的值的计算期间的任务和在*this取决于任何值,即,该表达式上转让的右侧是指在左侧的分配给一个变量。v
is computed during the assignment and depends on any of the values in *this, that is, the expression on the right side of the assignment refers to a variable in the left side of the assignment.val
.val
.目录 |
[编辑] 参数
v | - | 另一个数字阵列
|
val | - | 一个值
|
[编辑] 返回值
*this
[编辑] 例外
[编辑] 注释
- 所指示的操作符可以应用键入
T
原文:The indicated operator can be applied to typeT
- 的结果值可以明确转换
T
(1-3)或bool(4).原文:The result value can be unambiguously converted toT
(1-3) or bool (4).
-
- const提供的所有std::valarray成员函数.原文:All const member functions of std::valarray are provided.
- std::valarray,std::slice_array,std::gslice_array,std::mask_array和std::indirect_array可以由更换型.原文:std::valarray, std::slice_array, std::gslice_array, std::mask_array and std::indirect_array can be constructed from the replacement type.
- 所有的函数接受一个参数的类型const std::valarray&也应接受替换类型.原文:All functions accepting a arguments of type const std::valarray& should also accept the replacement type.
- 接受两个参数的类型const std::valarray&应该接受所有的功能const std::valarray&的每个组合和置换型.原文:All functions accepting two arguments of type const std::valarray& should accept every combination of const std::valarray& and the replacement type.
-