我的程序中需要一些大数组,我正在用 size = 16 * 16 * 12 * 12 的数组对其进行测试。
然后我将程序更改为以 size = 64 * 64 * 12 * 12 运行,并且在进入主程序之前就崩溃了。
是这样的阵列占用太多内存的问题吗?我试图在笔记本电脑上然后在一些功能更强大的台式机上运行代码,在这两种情况下,它都随着更大的阵列立即崩溃,并且适用于较小的数组。数组大小由在代码开头声明的const int控制。我使用
std::array<double, (64*64*12*12)>.
预先感谢
更新: 我编写的具有相同问题的最小程序如下:
#include <iostream>
#include <array>
using namespace std;
//declare variables
using std::array;
const int size_q=2;
const int qpoints=size_q*size_q*size_q;
const int size_k=2;
const int kpoints=size_k*size_k*size_k;
const int branches=12;
const int size_ph=kpoints*branches;
const int size_Theta=size_ph*size_ph;
array<double, size_Theta> f_ph(array<double,size_Theta>);
int main(int argc, char const *argv[])
{
array<double, size_Theta> theta1;
f_ph(theta1);
cout <<"Done";
return 0;
}
array<double, size_Theta> f_ph(array<double,size_Theta> theta1){
for(int i=0;i<size_Theta;i++){
theta1[i]=1.00;
}
return theta1;
**更新:似乎确实是内存,使用std :: vector程序可以平稳运行**
答案 0 :(得分:4)
您很可能在自动存储(“堆栈”)上的内存不足。
您可以使用向量:
#include <vector>
std::vector<double> arr(64*64*12*12);
arr[0]; // access first element
或者,如果您不需要向量提供的灵活性,也可以使用unique_ptr
:
#include <memory>
auto arr = std::make_unique<std::array<double, (64*64*12*12)>>();
(*arr)[0]; // access first element