boost Array Example

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了boost Array Example相关的知识,希望对你有一定的参考价值。

 1 #include <iostream>
 2 #include "boost/multi_array.hpp"
 3 
 4 using namespace std;
 5 
 6 int main() {
 7     boost::array<int, 4> array = {{1,2,3,4}};
 8     for (int i = 0; i<4; i++)
 9         cout <<array[i] <<" ";
10 
11     cout <<endl;    
12 
13     return 0;
14 }

./Boost_Array_Example
1 2 3 4

以上是关于boost Array Example的主要内容,如果未能解决你的问题,请参考以下文章

使用来自 boost::array 与 std::array 的 std::string::assign 不兼容

如何从 boost::python 返回 numpy.array?

Boost multi_array BOOST_ASSERT抛出一个断点

js代码片段: utils/lcoalStorage/cookie

boost::multi_array 的内存大小

使用 boost::asio read_some() 函数时替代 std::array,boost::array 在 read_some() 函数调用时崩溃