用一行代码实现宏offsetof

简介: 用一行代码实现宏offsetof

用一行代码实现宏offsetof

简介宏offsetof

offsetof (type,member)

type为类型名

member为成员名

作用:

  • This macro with functional form returns the offset value in bytes of member member in the data structure or union type type. The value returned is an unsigned integral value of type size_t with the number of bytes between the specified member and the beginning of its structure.——此具有函数形式的宏返回数据结构或联合类型类型中成员成员的偏移值(以字节为单位)返回的值是类型为 size_t 的无符号整数值,具有指定成员与其结构开头之间的字节数。
  • 简单来说,就是返回结构体成员相较于结构开头的偏移量(单位为字节)

例如:

#include <stdio.h>      /* printf */
#include <stddef.h>     /* offsetof */
struct foo {
  char a;
  char b[10];
  char c;
};
int main ()
{
  printf ("offsetof(struct foo,a) is %d\n",(int)offsetof(struct foo,a));
  printf ("offsetof(struct foo,b) is %d\n",(int)offsetof(struct foo,b));
  printf ("offsetof(struct foo,c) is %d\n",(int)offsetof(struct foo,c));
  return 0;
}

output:

offsetof(struct foo,a) is 0
offsetof(struct foo,b) is 1
offsetof(struct foo,c) is 11

模拟实现

要算出结构成员相较于结构开头的偏移量,这是不方便的。因为当我们只传入一个参数时,我们无法确定结构的起始地址。

但如果我们可以让起始地址为0,那么结构成员相较于起始地址的偏移量就是该成员的地址了。

因此我们可以这么写:

#define OFFSETOF(type,member) (size_t)&(((type *)0)->member)
  • 我们直接将地址0处强制转换为type类型,这样结构的起始地址就是0了
  • 接下来我们再引用结构成员,对其取地址,得到的也就是相较于结构开头的偏移量了
  • 最后将地址转换为size_t类型返回即可
相关文章
|
7月前
|
C语言
【C语言】库宏offsetof(结构体成员偏移量计算宏)
【C语言】库宏offsetof(结构体成员偏移量计算宏)
63 0
|
7月前
|
程序员 C语言 UED
详解C语言assert宏
详解C语言assert宏
83 0
|
2月前
|
编译器 C语言
C语言:typedef 和 define 有什么区别
在C语言中,`typedef`和`#define`都是用来创建标识符以简化复杂数据类型或常量的使用,但它们之间存在本质的区别。`typedef`用于定义新的数据类型别名,它保留了数据类型的特性但不分配内存。而`#define`是预处理器指令,用于定义宏替换,既可用于定义常量,也可用于简单的文本替换,但在编译前进行,过度使用可能导致代码可读性下降。正确选择使用`typedef`或`#define`可以提高代码质量和可维护性。
|
6月前
offsetof宏(想了解offsetof宏的使用,那么看这一篇就足够了!)
offsetof宏(想了解offsetof宏的使用,那么看这一篇就足够了!)
|
6月前
|
安全 编译器 C语言
【C语言进阶篇】offsetof宏的介绍 及其实现
【C语言进阶篇】offsetof宏的介绍 及其实现
|
7月前
|
编译器 C语言
【C语言】什么是宏定义?(#define详解)
【C语言】什么是宏定义?(#define详解)
133 0
|
7月前
|
Linux
offsetof宏与container_of宏
offsetof宏与container_of宏
41 0
|
7月前
|
编译器 C语言 C++
define与const关键字的多种用法
define与const关键字的多种用法
77 0
【C语言】——define和指针与结构体初识
【C语言】——define和指针与结构体初识
|
编译器 C语言 C++
【C语言】结构体与offsetof实现(上)
【C语言】结构体与offsetof实现
76 0