在cpp中初始化数组并用零填充

时间:2015-09-24 07:26:36

标签: c++ arrays padding variable-length-array

我是一个新的c ++,从matlab切换到更快地运行模拟 我想初始化一个数组并用零填充。

    # include <iostream>
# include <string>
# include <cmath>
using namespace std;

int main()
{
    int nSteps = 10000;
    int nReal = 10;
    double H[nSteps*nReal];
    return 0;
}

产生错误:

expected constant expression    
cannot allocate an array of constant size 0    
'H' : unknown size

你怎么做这个简单的事情?是否有一个带有命令的库,例如matlab:

zeros(n);

2 个答案:

答案 0 :(得分:4)

具有单个初始化程序的基于堆栈的数组在其结束前为零填充,但您需要使数组边界等于const

#include <iostream>

int main()
{       
    const int nSteps = 10;
    const int nReal = 1;
    const int N = nSteps * nReal;
    double H[N] = { 0.0 };
    for (int i = 0; i < N; ++i)
        std::cout << H[i];
}

Live Example

对于动态分配的数组,最好使用std::vector,这也不需要编译时已知的边界

#include <iostream>
#include <vector>

int main()
{
    int nSteps = 10;
    int nReal = 1;
    int N = nSteps * nReal;
    std::vector<double> H(N);
    for (int i = 0; i < N; ++i)
        std::cout << H[i];
}

Live Example

或者(但不推荐),你可以manually allocate一个零填充数组,如

double* H = new double[nSteps*nReal](); // without the () there is no zero-initialization

答案 1 :(得分:2)

如果你事先知道长度,你可以做到

#define nSteps 10000
#define nReal 10

然后

double H[nSteps*nReal] = {0};

或者您也可以将const关键字添加到您的尺寸中,而不是使用define