legongju.com
我们一直在努力
2025-01-12 21:07 | 星期天

container_of宏在嵌入式系统中的使用

container_of 宏是一个常用于 Linux 内核和其他 C 语言编写的嵌入式系统中的实用宏

container_of 宏的主要作用是从一个成员变量的指针,反向获取到包含该成员变量的结构体的指针。这在处理回调函数、链表操作等场景时非常有用。

以下是 container_of 宏的基本用法:

#define container_of(ptr, type, member) ({ \
    const typeof(((type *)0)->member) *__mptr = (ptr); \
    (type *)((char *)__mptr - offsetof(type, member)); })

这里有一个简单的例子来说明如何在嵌入式系统中使用 container_of 宏:

#include
#include 

typedef struct {
    int id;
    char name[20];
} student_t;

int main() {
    student_t student1 = {1, "Alice"};
    student_t student2 = {2, "Bob"};

    // 获取 student1 的 name 成员的指针
    char *name_ptr = &student1.name;

    // 使用 container_of 宏获取包含 name 成员的 student_t 结构体的指针
    student_t *student_ptr = container_of(name_ptr, student_t, name);

    // 输出结果
    printf("Student ID: %d\n", student_ptr->id);
    printf("Student Name: %s\n", student_ptr->name);

    return 0;
}

在这个例子中,我们首先定义了一个 student_t 结构体,然后创建了两个学生对象 student1student2。接着,我们获取了 student1name 成员的指针,并使用 container_of 宏获取了包含该成员的 student_t 结构体的指针。最后,我们输出了学生的 ID 和名字。

需要注意的是,container_of 宏依赖于 C 语言的特性(如 typeof 运算符和复合语句表达式),因此在使用时需要确保编译器支持这些特性。

未经允许不得转载 » 本文链接:https://www.legongju.com/article/103856.html

相关推荐

  • container_of宏在驱动程序开发中的意义

    container_of宏在驱动程序开发中的意义

    container_of 是一个 C 语言宏,用于在驱动程序和内核编程中获取包含特定成员的结构体实例
    在驱动程序开发中,container_of 宏通常用于处理设备、文件或其他...

  • container_of宏与内存布局的关系

    container_of宏与内存布局的关系

    container_of 宏是一个用于获取结构体实例的指针,通过其成员变量的指针
    在 C 语言中,结构体的内存布局是连续的。这意味着结构体中的成员变量在内存中是按...

  • 如何避免container_of宏的误用

    如何避免container_of宏的误用

    container_of 宏是一种在 Linux 内核和其他 C 语言项目中常用的技巧,用于从成员指针获取其所属结构体的指针 确保成员变量的名称唯一:在使用 container_of 时,...

  • 用container_of宏获取结构体成员

    用container_of宏获取结构体成员

    container_of 是一个宏,用于从结构体的成员指针获取结构体的指针
    #include
    #include typedef struct { int a; int b;
    } MyStruct; #define cont...

  • 用container_of宏获取结构体成员

    用container_of宏获取结构体成员

    container_of 是一个宏,用于从结构体的成员指针获取结构体的指针
    #include
    #include typedef struct { int a; int b;
    } MyStruct; #define cont...

  • container_of宏与指针运算的关系

    container_of宏与指针运算的关系

    container_of 宏是一个用于获取结构体实例的指针,通过其成员变量的指针
    在 C 语言中,container_of 宏的定义如下:
    #define container_of(ptr, type,...

  • container_of宏在C语言中的应用

    container_of宏在C语言中的应用

    container_of 宏在 C 语言中通常用于从一个结构体的成员指针获取到整个结构体的指针
    container_of 宏的定义如下:
    #define container_of(ptr, type, m...

  • 如何正确使用container_of宏

    如何正确使用container_of宏

    container_of 是一个在 Linux 内核和其他 C 语言项目中常用的宏,用于从结构体的成员指针获取结构体的指针 首先,定义一个结构体类型。例如: struct student { ...