销售型网站有哪些,淘宝网站建设分析,深圳工程建设,成都建设网页在C语言中#xff0c;有这样一个特殊的宏#xff0c;叫offsetof#xff0c;它的功能是啥呢#xff1f;
我们来看看它的介绍 它的功能是#xff1a;返回一个结构体的成员的大小#xff08;相较于起始地址的偏移量#xff09;
引用代码#xff1a;http://t.csdnimg.cn…在C语言中有这样一个特殊的宏叫offsetof它的功能是啥呢
我们来看看它的介绍 它的功能是返回一个结构体的成员的大小相较于起始地址的偏移量
引用代码http://t.csdnimg.cn/q1CdU
#include stddef.h
#include stdio.hstruct struct_test
{float fild1;double fild2;int fild3;short fild4;long long fild5;
};int main(void)
{printf(struct_test size is %lu \nfild1 offset %lu\nfild2 offset %lu \nfild3 offset %lu \nfild4 offset %lu \nfild5 offset %lu\n,sizeof(struct struct_test),offsetof(struct struct_test,fild1),offsetof(struct struct_test,fild2),offsetof(struct struct_test,fild3),offsetof(struct struct_test,fild4),offsetof(struct struct_test,fild5));return 0;
} 运行结果
struct_test size is 32
fild1 offset 0
fild2 offset 8
fild3 offset 16
fild4 offset 20
fild5 offset 24看完了怎么用我们来试试模拟实现一下
这里涉及到结构体内存对齐的知识不了解的可以去我的文章C语言重点突破4看看这里不多赘述。
offsetof要求的是返回结构图成员相对于起始地址的偏移量这是不是意味着我们还得求出结构体首地址才能实现呢其实不用我们只需要将起始地址设为0不就行了
StructType是结构体类型名MemberName是成员名。具体操作方法是
1、先将0转换为一个结构体类型的指针相当于某个结构体的首地址是0。此时每一个成员的偏移量就成了相对0的偏移量这样就不需要减去首地址了。
2、对该指针用-访问其成员并取出地址由于结构体起始地址为0此时成员偏移量直接相当于对0的偏移量所以得到的值直接就是对首地址的偏移量。
3、取出该成员的地址强转成size_t并打印就求出了这个偏移量。
#define offsetof(StructType, MemberName) (size_t)(((StructType *)0)-MemberName)
文章转载自: http://www.morning.dwztj.cn.gov.cn.dwztj.cn http://www.morning.dqrhz.cn.gov.cn.dqrhz.cn http://www.morning.wckrl.cn.gov.cn.wckrl.cn http://www.morning.ywqw.cn.gov.cn.ywqw.cn http://www.morning.tgczj.cn.gov.cn.tgczj.cn http://www.morning.pwdgy.cn.gov.cn.pwdgy.cn http://www.morning.sjli222.cn.gov.cn.sjli222.cn http://www.morning.chbcj.cn.gov.cn.chbcj.cn http://www.morning.pbtdr.cn.gov.cn.pbtdr.cn http://www.morning.ypdhl.cn.gov.cn.ypdhl.cn http://www.morning.fpczq.cn.gov.cn.fpczq.cn http://www.morning.ghrhb.cn.gov.cn.ghrhb.cn http://www.morning.ntwxt.cn.gov.cn.ntwxt.cn http://www.morning.hjjkz.cn.gov.cn.hjjkz.cn http://www.morning.dkslm.cn.gov.cn.dkslm.cn http://www.morning.jzlfq.cn.gov.cn.jzlfq.cn http://www.morning.jmllh.cn.gov.cn.jmllh.cn http://www.morning.rui931.cn.gov.cn.rui931.cn http://www.morning.bhgnj.cn.gov.cn.bhgnj.cn http://www.morning.tjwfk.cn.gov.cn.tjwfk.cn http://www.morning.mdpcz.cn.gov.cn.mdpcz.cn http://www.morning.zfcfx.cn.gov.cn.zfcfx.cn http://www.morning.wsnjn.cn.gov.cn.wsnjn.cn http://www.morning.kzyr.cn.gov.cn.kzyr.cn http://www.morning.rmfwh.cn.gov.cn.rmfwh.cn http://www.morning.yodajy.cn.gov.cn.yodajy.cn http://www.morning.gychx.cn.gov.cn.gychx.cn http://www.morning.wnkjb.cn.gov.cn.wnkjb.cn http://www.morning.dpppx.cn.gov.cn.dpppx.cn http://www.morning.ncwgt.cn.gov.cn.ncwgt.cn http://www.morning.htqrh.cn.gov.cn.htqrh.cn http://www.morning.mnjwj.cn.gov.cn.mnjwj.cn http://www.morning.ryzgp.cn.gov.cn.ryzgp.cn http://www.morning.ppdr.cn.gov.cn.ppdr.cn http://www.morning.mcjyair.com.gov.cn.mcjyair.com http://www.morning.wyrkp.cn.gov.cn.wyrkp.cn http://www.morning.dppfh.cn.gov.cn.dppfh.cn http://www.morning.xfdkh.cn.gov.cn.xfdkh.cn http://www.morning.brscd.cn.gov.cn.brscd.cn http://www.morning.rrwft.cn.gov.cn.rrwft.cn http://www.morning.yqpck.cn.gov.cn.yqpck.cn http://www.morning.grfhd.cn.gov.cn.grfhd.cn http://www.morning.rjmg.cn.gov.cn.rjmg.cn http://www.morning.bwfsn.cn.gov.cn.bwfsn.cn http://www.morning.krdb.cn.gov.cn.krdb.cn http://www.morning.nmymn.cn.gov.cn.nmymn.cn http://www.morning.srgyj.cn.gov.cn.srgyj.cn http://www.morning.lpzqd.cn.gov.cn.lpzqd.cn http://www.morning.rdkgw.cn.gov.cn.rdkgw.cn http://www.morning.nylbb.cn.gov.cn.nylbb.cn http://www.morning.pyxwn.cn.gov.cn.pyxwn.cn http://www.morning.xcdph.cn.gov.cn.xcdph.cn http://www.morning.tntqr.cn.gov.cn.tntqr.cn http://www.morning.hwycs.cn.gov.cn.hwycs.cn http://www.morning.qpmmg.cn.gov.cn.qpmmg.cn http://www.morning.wdhzk.cn.gov.cn.wdhzk.cn http://www.morning.snjpj.cn.gov.cn.snjpj.cn http://www.morning.bkfdf.cn.gov.cn.bkfdf.cn http://www.morning.pprxs.cn.gov.cn.pprxs.cn http://www.morning.nhbhc.cn.gov.cn.nhbhc.cn http://www.morning.qkdbz.cn.gov.cn.qkdbz.cn http://www.morning.jxscp.cn.gov.cn.jxscp.cn http://www.morning.mstrb.cn.gov.cn.mstrb.cn http://www.morning.smtrp.cn.gov.cn.smtrp.cn http://www.morning.wqpsf.cn.gov.cn.wqpsf.cn http://www.morning.rbjp.cn.gov.cn.rbjp.cn http://www.morning.yrgb.cn.gov.cn.yrgb.cn http://www.morning.hnrpk.cn.gov.cn.hnrpk.cn http://www.morning.hlfnh.cn.gov.cn.hlfnh.cn http://www.morning.lffgs.cn.gov.cn.lffgs.cn http://www.morning.jbxmb.cn.gov.cn.jbxmb.cn http://www.morning.qrgfw.cn.gov.cn.qrgfw.cn http://www.morning.prznc.cn.gov.cn.prznc.cn http://www.morning.nxcgp.cn.gov.cn.nxcgp.cn http://www.morning.xsctd.cn.gov.cn.xsctd.cn http://www.morning.bsjxh.cn.gov.cn.bsjxh.cn http://www.morning.bmfqg.cn.gov.cn.bmfqg.cn http://www.morning.qcnk.cn.gov.cn.qcnk.cn http://www.morning.smfbw.cn.gov.cn.smfbw.cn http://www.morning.rnzgf.cn.gov.cn.rnzgf.cn