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

container_of宏在C语言中的应用

container_of 宏在 C 语言中通常用于从一个结构体的成员指针获取到整个结构体的指针

container_of 宏的定义如下:

#define container_of(ptr, type, member) \
    ((type *)((char *)(ptr) - offsetof(type, member)))

这里,ptr 是指向结构体成员的指针,type 是结构体类型,member 是结构体中成员的名称。offsetof 函数用于计算成员在结构体中的偏移量。

以下是一个使用 container_of 宏的示例:

#include
#include 

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

int main() {
    Student student = {1, "Alice"};
    int *id_ptr = &student.id;

    // 使用 container_of 宏获取 Student 结构体的指针
    Student *student_ptr = container_of(id_ptr, Student, id);

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

    return 0;
}

在这个示例中,我们首先创建了一个 Student 结构体变量 student,然后获取了它的 id 成员的指针 id_ptr。接着,我们使用 container_of 宏从 id_ptr 获取到整个 Student 结构体的指针 student_ptr。最后,我们可以通过 student_ptr 访问结构体的其他成员。

未经允许不得转载 » 本文链接:https://www.legongju.com/article/103853.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 宏是一个常用于 Linux 内核和其他 C 语言编写的嵌入式系统中的实用宏
    container_of 宏的主要作用是从一个成员变量的指针,反向获取到包含该成...

  • 如何正确使用container_of宏

    如何正确使用container_of宏

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

  • container_of宏的作用是什么

    container_of宏的作用是什么

    container_of 宏在 C 语言中通常用于获取结构体的起始地址,给定其成员变量的指针
    这个宏的主要作用是在遍历链表、树等数据结构时,根据某个成员变量的指针...

  • progressbar在项目进度管理中的作用

    progressbar在项目进度管理中的作用

    在项目进度管理中,进度条(Progress Bar)是一种直观展示任务完成进度的工具,它通过视觉化的方式,帮助团队成员和管理者快速了解项目的当前状态和剩余工作量。...

  • startactivityforresult的回调机制解析

    startactivityforresult的回调机制解析

    startActivityForResult 是 Android 中用于从一个 Activity 启动另一个 Activity,并在结果返回时获取结果数据的方法。这种回调机制基于 Android 的 Activity 生...