编译器警告将结构数组(本身是结构成员)传递给函数

Compiler Warning Passing array of structs (itself member of struct) to Function

我定义了以下结构 - 坐标结构本身是父结构的成员

typedef struct _coord {
    double x;   // time axis - seconds rather than samples
    double y;
}   t_coord;

typedef struct _algosc {                    
    t_coord coords[COORD_COUNT];        
    //... struct continues beyond this but...
}   t_algosc;

我创建一个指向父结构的指针,然后分配内存。 object_alloc 是 malloc 类型的函数,特定于别处定义的 API (MAX5)。这一切正常,所以我没有包括细节。

static t_class *algosc_class;   // pointer to the class of this object

    t_algosc *x = object_alloc(algosc_class)

这是我希望将坐标结构数组传递给的函数的声明

    void    au_update_coords(t_coord (*coord)[])

我按如下方式将数组传递给函数,

au_update_coords(x->coords);

一切正常,但我收到编译器警告

1>db.algosc~.c(363): warning C4047: 'function' : 't_coord (*)[]' differs in levels of indirection from 't_coord [4]'
1>db.algosc~.c(363): warning C4024: 'au_update_coords' : different types for formal and actual parameter 1

我想不出传递结构的正确方法。谁能帮忙。也只是为了我的启迪,什么样的问题我会冒着保持现状的风险?

你需要传递一个指向数组的指针,所以你需要获取你的数组的地址,使它成为一个指向数组的指针,this

au_update_coords(x->coords, otherArguments ...);

应该变成

au_update_coords(&x->coords, otherArguments ...);

但你不需要那个。如果您担心该函数不会就地更改数组,请不要担心它会发生,您需要更改函数签名

void    au_update_coords(t_coord (*coord)[], otherArguments ...)

void    au_update_coords(t_coord *coord, otherArguments ...)

并像

一样直接传递数组
au_update_coords(x->coords, otherArguments ...);

当然,您可能需要在访问数组的任何地方修复 au_update_coords() 函数。