数组容器, 是存储数组的容器, 是C类型数组的扩充, 可以使用迭代器进行操作;
例如"std::array<int, 5>", 需要注意的是, 如果直接进行赋值, "std::array<int, 5> ia = {1, 2, 3, 4, 5}; "
在GCC下会有警告: "missing braces around initializer for 'std::array<int, 5u>::value_type [5] {aka int [5]}' [-Wmissing-braces]"
原因是与初始化数组的方式不符, 再加一组"{}"即可, 如: "std::array<int, 5> ia ={{1, 2, 3, 4, 5}};", 使参数满足int[5], 再进行赋值;
数组一般在初始化过程中赋值, 如果想替换已有的值, 一种方法是遍历所有的值, 较复杂;
另一种方法是通过复制去重新赋值, 实现快速赋值;
代码:
/* * test.cpp * * Created on: 2013.11.12 * Author: Caroline */ /*eclipse cdt; gcc 4.7.1*/ #include <iostream> #include <array> int main (void) { std::array<int, 5> ia = {{1, 2, 3, 4, 5}}; for(const auto i : ia) std::cout << i << " "; std::cout << std::endl; std::array<int, 5> ia2; // 空数组 //ia2 = {1, 2, 3, 4, 5}; //错误 ia2 = ia; for(const auto i : ia2) std::cout << i << " "; std::cout << std::endl; return 0; }
作者:csdn博客 Spike_King
更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索c++
, 数组
, include
, 容器
, array
, std
数组详解
c array 二维数组、c 数组array、c array 和 数组、c 容器详解、c语言数组 详解,以便于您获取更多的相关知识。