gpt4 book ai didi

c - typedef 结构导致 "pointer to incomplete type not allowed"错误

转载 作者:行者123 更新时间:2023-12-05 02:41:43 25 4
gpt4 key购买 nike

我使用的库在其 header (http_client.h) 中包含以下声明:

typedef struct _httpc_state httpc_state_t;

库在实现中定义结构(http_client.c)

typedef struct _httpc_state
{
struct altcp_pcb* pcb;
ip_addr_t remote_addr;
u16_t remote_port;
int timeout_ticks;
struct pbuf *request;
struct pbuf *rx_hdrs;
u16_t rx_http_version;
u16_t rx_status;
altcp_recv_fn recv_fn;
const httpc_connection_t *conn_settings;
void* callback_arg;
u32_t rx_content_len;
u32_t hdr_content_len;
httpc_parse_state_t parse_state;
#if HTTPC_DEBUG_REQUEST
char* server_name;
char* uri;
#endif
} httpc_state_t;

在同一个 C 文件中,它实现了以下使用结构的函数:

/** http client tcp poll callback */
static err_t
httpc_tcp_poll(void *arg, struct altcp_pcb *pcb)
{
/* implement timeout */
httpc_state_t* req = (httpc_state_t*)arg; // Here the void pointer is casted to httpc_state_t
LWIP_UNUSED_ARG(pcb);
if (req != NULL) {
if (req->timeout_ticks) { // Here the concrete type is used. Works. No problems.
req->timeout_ticks--;
}
if (!req->timeout_ticks) {
return httpc_close(req, HTTPC_RESULT_ERR_TIMEOUT, 0, ERR_OK);
}
}
return ERR_OK;
}

我有一个使用这个库的 C++ 文件,当然包括所需的 header (http_client.h)。

extern "C"
{
#include "FreeRTOS.h"
#include "task.h"
#include "semphr.h"

#include "lwip/tcpip.h"
#include "lwip/apps/http_client.h" // Here I include their http_client.h file

#include "projdefs.h"
}

在我的下一个功能中,我需要完全他们的实现所做的事情。我需要用 httpc_state_t 做点什么。我实现了他们的回调函数如下:

err_t rec_fn(void *arg, struct altcp_pcb *conn, struct pbuf *p, err_t err)
{
if (p)
{
httpc_state_t* req = (httpc_state_t*)arg; // Compiler sees no problems in casting to my desired type....
req->timeout_ticks = 30; // COMPILE ERROR, pointer to incomplete class type _httpc_state is not allowed
}
}

为什么会出现编译错误?!包含头文件。头文件声明了 typedef。即使看完了thisthis ,我仍然看不出我做错了什么....

最佳答案

在定义函数 rec_fn 的翻译单元中,编译器只会看到以下声明

typedef struct _httpc_state httpc_state_t;

它不知道该语句中使用的数据成员timeout_ticks

req->timeout_ticks = 30;

确实在结构 struct _httpc_state 中声明,它的类型是什么。即名称 timeout_ticks 未在此翻译单元中声明。所以编译器会报错。

如果您打算在翻译单元中使用结构的数据成员,那么编译器需要知道它们的声明。也就是说,您还需要包括结构定义。

如果允许的话,要么在头文件中移动结构定义,要么在定义函数的模块中复制它的定义。

请注意,如果结构定义未放在 header 中,则原因可能是代码的作者不想使其在他的模块或库之外可用。

关于c - typedef 结构导致 "pointer to incomplete type not allowed"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68000500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com