array::operator=
控件替换序列。
array <Value>% operator=(array <Value>% right);
参数
- right
复制的容器。
备注
运算符分配 right 每个元素序列到控制的对应元素的一个成员,然后返回 *this。 使用它将控制的序列复制在 right中替换控件序列。
示例
// std_tr1__array__array_operator_as.cpp
// compile with: /EHsc
#include <array>
#include <iostream>
typedef std::array<int, 4> Myarray;
int main()
{
Myarray c0 = {0, 1, 2, 3};
// display contents " 0 1 2 3"
for (Myarray::const_iterator it = c0.begin();
it != c0.end(); ++it)
std::cout << " " << *it;
std::cout << std::endl;
Myarray c1;
c1 = c0;
// display copied contents " 0 1 2 3"
for (Myarray::const_iterator it = c1.begin();
it != c1.end(); ++it)
std::cout << " " << *it;
std::cout << std::endl;
return (0);
}
要求
数组页眉: <>
命名空间: std