阅读量:0
在C语言中,container_of函数用于获取包含某个成员的结构体的指针。
container_of函数的原型如下:
#define container_of(ptr, type, member) ({ \ const typeof(((type *)0)->member) *__mptr = (ptr); (type *)((char *)__mptr - offsetof(type, member)); })
其中,参数ptr是成员的指针,type是结构体的类型,member是成员在结构体中的名称。
使用container_of函数的步骤如下:
- 确保结构体中的成员具有已知的偏移量。
- 通过指向成员的指针ptr,调用container_of函数,并传入相关参数。
- container_of函数将返回指向包含成员的结构体的指针。
下面是一个使用container_of函数的示例:
#include <stddef.h> struct Student { int id; char name[20]; }; int main() { struct Student s; int *ptr_id = &s.id; struct Student *ptr_student = container_of(ptr_id, struct Student, id); return 0; }
这个示例中,我们定义了一个结构体Student,其中包含了一个成员id。在main函数中,我们取得成员id的指针ptr_id,然后调用container_of函数,通过ptr_id获取到包含成员id的结构体指针ptr_student。
需要注意的是,使用container_of函数时,需要确保成员的偏移量是已知的,否则可能会得到错误的结果。可以通过offsetof宏来获取成员的偏移量。