我定义了以下结构:
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!
}
但是在编译时我得到了“标量初始化器中的多余元素”(在最后一行)。
这个警告意味着什么?为什么我不能这样初始化一个实例?
由于
答案 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
}