boost_multi 数组太大? bad_alloc 错误

boost_multi array too large? bad_alloc error

我正在编写一个程序来测试一个功能。但是,当我声明具有特定大小的 boost::multi_array 时出现错误。我收到以下错误:

terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc

我的代码如下所示:

#include <boost/multi_array.hpp>
#include <boost/array.hpp>
boost::multi_array<double,3> test ;
test.resize( boost::extents[1000][1000][1000] ) ;

如果我声明 2D multi_array 或声明尺寸为 10x10x10 和 100x100x100 的 3D multi_array,我不会收到错误消息。

有没有人知道如何解决这个问题?这个问题与编译器有关吗?

我使用 Qt creator 执行代码并使用 MinGW 编译器。

稍后在我的项目中,我将使用维度为 12/13 的数组,每个维度的长度在 100 到 1000 之间,所以我真的需要它来工作。

提前致谢!

RAM 内存超出。

double 占用 8 个字节 -> 1000x1000x1000 个 double = 8 GB 所需的 RAM。