我试图创建一个包含多个函数指针的结构,但是当我试图创建该结构的实例时,我得到一个错误"variable "stCmdTable" was declared with a never-completed type"
。
我有一个头文件,其中有以下代码:
typedef int (*pStCmd) (void);
struct stCmdStruc {
pStCmd id;
pStCmd measure;
pStCmd setRelay;
};
typedef struct stCmdStruct stCmdStruct;
stCmdStruct stCmdTable;
我想创建
stCmdTable
并将函数分配给stCmdTable中的所有函数指针,但是当它不喜欢我声明的stCmdTable
时。我也试过这样做,我试着用我的结构定义初始化所有指向bat函数的函数指针,但它真的不喜欢在结构的每一行的末尾告诉我
expected a ";"
。typedef int (*pStCmd) (void);
struct stCmdStruc {
pStCmd id = sendId2;
pStCmd measure = sendMeasurement2;
pStCmd setRelay = setRelay2;
};
typedef struct stCmdStruct stCmdStruct;
stCmdStruct stCmdTable;
有谁能告诉我我做错了什么吗?
最佳答案
试试这个. .
typedef int (*pStCmd_Type) (void);
typedef struct _stCmdStruct {
pStCmd_Type id;
pStCmd_Type measure;
pStCmd_Type setRelay;
} stCmdStruct_Type;
stCmdStruct_Type stCmdTable[your_table_size];
stCmdTable[0].id = sendId2;
stCmdTable[0].measure = sendMeasurement2;
stCmdTable[0].setRelay = setRelay2;