源代码连接:
https://github.com/redis/redis/blob/unstable/src/dict.h
https://github.com/redis/redis/blob/unstable/src/dict.c
dict.h:类dict(字典<哈希>)
Function Set:dict->type
dict.c:
调用例子入口:dictTest
函数指针:
可不需要#typedef进行声明,三种使用方式
//方式3 :直接通过指针类型创建,不需用typedef预定义。 int(*fp3)(int, int) = NULL; fp3 = func; fp3(27, 89);
在redis中,实现具体函数(如:hashCallback)
这里,由于在.h文件中对Type的定义中,已经包含对该函数指针结构的定义:
//定义 typedef struct dictType { uint64_t (*hashFunction)(const void *key); ...... }
调用时:
//具体函数实现 uint64_t hashCallback(const void *key) { return dictGenHashFunction((unsigned char*)key, strlen((char*)key)); } //调用 dictType BenchmarkDictType = { hashCallback, ...... }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。