array::assign
替换任何元素。
void assign(const Ty& val);
参数
- val
要赋予的值。
备注
成员函数为 val值的 N 元素重复顺序控制由 *this 替换。
示例
// std_tr1__array__array_assign.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.assign(4);
// display contents " 4 4 4 4"
for (Myarray::const_iterator it = c1.begin();
it != c1.end(); ++it)
std::cout << " " << *it;
std::cout << std::endl;
return (0);
}
要求
数组页眉: <>
命名空间: std