分段错误:动态分配大整数数组

时间:2016-11-10 00:44:33

标签: c++ arrays

我有一个动态分配的数组"数据"以下代码。我将数组大小作为命令行参数传递。该程序正常工作,直到datasize = 33790.如果我尝试提供值>它会给出分段错误。 33790

" 33790"可能是机器特定的。我试图理解为什么动态分配的内存会在特定大小后返回seg fault。欢迎任何帮助。 :)

#include "iostream"
#include <stdlib.h>
#include "iomanip"
#include "ctime"

#define N 100000

using namespace std;

int main(int argc, char* argv[])
{
    int a;
    cout<<"Size of int : "<<sizeof(int)<<endl;

    long int datasize = strtol(argv[1],NULL,0);
    cout<<"arg1 : "<<datasize<<endl;
    double sum = 0;
    int *data;
    data = new int(datasize);

    clock_t begin = clock();
    for(int i = 0; i < N; i++)                              //repeat the inner loop N times
    {
        //fetch the data into the cache
        //access it multiple times in order to amortize the compulsory miss latency
        for (long int j = 0; j < datasize; j++)
        {
            sum += data[j];                                 //get entire array of data inside cache
        }
    }

    clock_t end = clock();

    double time_spent = (double) (end - begin);

    cout<<"sum = "<<sum<<endl;
    cout<<"Time Spent for data size = "<<argv[1]<<" is "<<time_spent<<endl;

    delete[] data;

    return 0;
}

1 个答案:

答案 0 :(得分:2)

您没有分配任何数组(包含多个元素),但只分配了一个intdatasize。{/ p>

使用new int[datasize]代替new int(datasize)来分配intdatasize元素的数组。