如何正确初始化其中一个成员是数组的结构?

时间:2016-05-29 18:21:31

标签: c

我定义了以下结构:

typedef struct sp_point_t* SPPoint;

struct sp_point_t
{
    int dim;
    int index;
    double* data;
};

然后我想初始化结构的一个实例:

foo (double* data, int dim, int index)
{
double* dataInserted;
dataInserted = (double*) calloc(dim,sizeof(double));
//inserting values to dataInserted 
SPPoint newPoint = {dim, index, dataInserted}; // warning!
}

但是在编译时我得到了“标量初始化器中的多余元素”(在最后一行)。

这个警告意味着什么?为什么我不能这样初始化一个实例?

由于

1 个答案:

答案 0 :(得分:1)

您正在初始化指向struct而不是stuct本身的指针。以下工作(如果您的代码中有结构创建):

foo (double* data, int dim, int index)
{
    double* dataInserted;
    dataInserted = (double*) calloc(dim,sizeof(double));
    //inserting values to dataInserted
    struct sp_point_t newPoint  = {dim, index, dataInserted}; // Corrected code
}