码迷,mamicode.com
首页 > 其他好文 > 详细

嵌入式开发知识点总结

时间:2019-10-02 00:40:48      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:float   img   style   ber   print   short   oat   roc   turn   

offsetof和container_of宏

offsetof宏的作用:计算结构体中某个元素相对结构体首地址的偏移量

container_of宏的作用:知道结构体变量中某个成员的指针,反推这个结构体变量的指针

#include <stdio.h>
#define offsetof(type,member) ((int) &((type *)0)->member)
#define container_of(ptr,type,member) ({    const typeof(((type *)0)->member) *mptr = (ptr);    (type *)((char *)mptr - offsetof(type,member));})
//typeof关键字的作用:typeof(a)由变量a获得变量a的类型
typedef struct node{
    int a;
    double b;
    float c;
} n1;
int main()
{
    n1 s;
    float *p = &(s.c);
    printf("offsetof(c) = %d\n",offsetof(n1,c));
    printf("addr of s is %p\n",&s);
    printf("container_of(p,n1,c) = %p\n",container_of(p,n1,c));
    return 0;
    
}
技术图片
sizeof(short) = 2
sizeof(int) = 4
sizeof(long) = 4

--------------------------------
Process exited after 0.1803 seconds with return value 0
请按任意键继续. . .
运行结果

 

嵌入式开发知识点总结

标签:float   img   style   ber   print   short   oat   roc   turn   

原文地址:https://www.cnblogs.com/embeded-linux/p/11616418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!