C语言中sizeof的用法
今天同学问我sizeof可不可以计算结构体的大小,我竟然忘了C语言还有sizeof这个函数,我是多久没有写程序了啊!!!惭愧,上研究生后写嵌入式方面的程序就特别少了,看来以后还要经常来练练手才行。现在转载一篇看到的sizeof用法的文章,与大家分享(第一篇技术类的文章竟然是转载的,惭愧)。
#include "stdio.h" #include "string.h" #include "stdlib.h" int main() { short int sa=10; int a=10; long la=10; float f = 20; double d=20; char ch=‘c‘; char str[]="ABC"; char *p=str; struct str { double d; char ch; int data; }str_wu; struct str1{ char ch; double d; int data; }str_wu1; printf("sizeof(short):%d\n",sizeof(sa)); printf("sizeof(int):%d\n",sizeof(a)); printf("sizeof(long):%d\n",sizeof(la)); printf("sizeof(float):%d\n",sizeof(f)); printf("sizeof(double):%d\n",sizeof(d)); printf("sizeof(char):%d\n",sizeof(ch)); printf("sizeof(string):%d\n",sizeof(str)); printf("sizeof(point address):%d\n",sizeof(p)); printf("sizeof(Point):%d\n",sizeof(*p)); printf("sizeof(Struct):%d\n",sizeof(str_wu)); printf("sizeof(Struct):%d\n",sizeof(str_wu1)); system("pause"); }
double d;
char ch;
int data;
}str_wu;
struct str1
char ch;
double d;
int data;
}str_wu1;
两个不同的结构,但是内部的元素是相同的,都是double,int,char,只是顺序不一样,就结果不一样。why?
对齐方式(变量存放的起始地址相对于结构的起始地址的偏移量)
偏移量必须为sizeof(char)即1的倍数
偏移量必须为sizeof(int)即4的倍数
偏移量必须为sizeof(float)即4的倍数
偏移量必须为sizeof(double)即8的倍数
偏移量必须为sizeof(short)即2的倍数
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。