c语言->学会offsetof宏计算结构体相对偏移量

发布时间:2024年01月22日

前言

?作者简介:大家好,我是橘橙黄又青,一个想要与大家共同进步的男人😉😉

🍎个人主页:橘橙黄又青-CSDN博客

目的,学习offsetof宏计算结构体相对偏移量

1.offsetof宏

来我们看图:

?参数:第一个是结构体类型名称,第二个是结构体成员名

返回类型:size_t无符号整形

引用的头文件:<stddef.h>

?2.offsetof的使用

案例1:

#include<stdio.h>
#include <stddef.h>

struct Stu // 注释为相对于起始位置的偏移量
{
	int a;//0~3
	char c;//4~5
	double d;//8~15
};
int main()
{
	printf("%d\n", sizeof(struct Stu));
	printf("%d\n", offsetof(struct Stu, a));
	printf("%d\n", offsetof(struct Stu, c));
	printf("%d\n", offsetof(struct Stu, d));
	return 0;
}

输出结果:

3.offsetofde实现?

代码:


#include <stddef.h>
//写一个宏,计算结构体中某变量相对于首地址的偏移,并给出说明
struct Stu
{
	int a;//0~3
	char c;//4
	//5~7
	double d;//8~15
};
 
#define OFFSETOF(struct_type, mem_name)      (int)&(((struct_type*)0)->mem_name)
 
 
int main()
{
	printf("%d\n", OFFSETOF(struct Stu, a));
	printf("%d\n", OFFSETOF(struct Stu, c));
	printf("%d\n", OFFSETOF(struct Stu, d));
	return 0;
}

输出结果:

来我们来画画图:

??我们假设结构体起始地址就是0,这样其成员的地址取出来再强制类型转换为int便可以表示结构体中某个成员相对于起始位置的偏移量,这是一种很巧妙的思考方式,即可实现宏 offsetof 的模拟实现;

好啦,我们今天就到这里,点个赞吧,感谢观看。

文章来源:https://blog.csdn.net/chendemingxxx/article/details/135755179
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。