【C语言】宏offsetof的模拟实现 (计算结构体中某变量相对于首地址的偏移)

【C语言】宏offsetof的模拟实现 (计算结构体中某变量相对于首地址的偏移),第1张

【C语言】宏offsetof的模拟实现 (计算结构体中某变量相对于首地址的偏移)

首先我们应该特别留意 : offsetof 是一个宏,并非是一个函数 !

宏offsetof的介绍 :

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

返回类型:size_t无符号整形

引用的头文件:

offsetof的使用举列 :

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

 

offsetof的模拟实现 :

 

#include 
//写一个宏,计算结构体中某变量相对于首地址的偏移,并给出说明
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("%dn", OFFSETOF(struct Stu, a));
	printf("%dn", OFFSETOF(struct Stu, c));
	printf("%dn", OFFSETOF(struct Stu, d));
	return 0;
}

实现详解 :

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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4653100.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-06
下一篇 2022-11-06

发表评论

登录后才能评论

评论列表(0条)

保存