gpt4 book ai didi

c - 结构的前向声明而不使用它

转载 作者:可可西里 更新时间:2023-11-01 11:48:21 25 4
gpt4 key购买 nike

我最近在浏览redis源码,偶然发现this行(我认为)是前向声明(另请参阅 this 提交)。我不是专家或任何东西,但声明 evictionPoolEntry 但从未使用它似乎很奇怪。关于为什么的任何想法?这是代码块:

服务器.h:

struct evictionPoolEntry; /* Defined in evict.c */

驱逐.c:

struct evictionPoolEntry {
unsigned long long idle; /* Object idle time (inverse frequency for LFU) */
sds key; /* Key name. */
sds cached; /* Cached SDS object for key name. */
int dbid; /* Key DB number. */
};

谢谢!

最佳答案

在evict.c的第60行使用:static struct evictionPoolEntry *EvictionPoolLRU; 以声明指向文件的全局指针。该指针用于 int freeMemoryIfNeeded(void)void evictionPoolAlloc(void) 函数。

关于c - 结构的前向声明而不使用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40727032/

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