s1e53位域,这个位域为什么不可以操作
不是说位域是可以操作的么,为什么我在下面这个程序里面更改了位域的范围但是sizeof后数位并没有更改?请那位老师给解答一下谢谢。为什么#include<stdio.h>
int main(void)
{
struct Test
{
unsigned int a:1;
unsigned int b:1;
unsigned int c:30;
/*unsigned int c:2;*/
};
struct Test test;
test.a = 0;
test.b = 1;
test.c = 2;
printf("a = %d\nb = %d\nc = %d\n", test.a, test.b, test.c);
printf("sizeof for test %d", sizeof(test));
return 0;
} 本来就是四个字节,你对ab分别分配了1个位,c分配了30个位,所以还是在一个unsigned int的范围之内,也就是4个字节
所以用sizeof的到的结果应该还是unsigned int的长度 BngThea 发表于 2018-5-7 09:45
本来就是四个字节,你对ab分别分配了1个位,c分配了30个位,所以还是在一个unsigned int的范围之内,也就是 ...
8个位不是一个字节么?我这里改成下面这样也一样是4个字节为什么呢?
include<stdio.h>
int main(void)
{
struct Test
{
unsigned int a:8;
/*unsigned int b:16;*/
/*unsigned int c:16;*/
/*unsigned int c:2;*/
};
struct Test test;
test.a = 0;
/*test.b = 1;*/
/*test.c = 2;*/
/*printf("a = %d\nb = %d\nc = %d\n", test.a, test.b, test.c);*/
printf("sizeof for test %d", sizeof(test));
return 0;
}
奥普瓯江 发表于 2018-5-7 10:32
8个位不是一个字节么?我这里改成下面这样也一样是4个字节为什么呢?
你定义了一个unsigned int,那么就占了4个 空间
只不过你只给了8位给a,剩下的被当作无名位域了 看汇编语言吧
struct Test
{
unsigned int a : 1;
unsigned int b : 1;
unsigned int c : 30;
/*unsigned int c:2;*/
};
struct Test test;
test.a = 0;
00401A4Emov eax,dword ptr
00401A51and eax,0FFFFFFFEh
00401A54mov dword ptr ,eax
test.b = 1;
00401A57mov eax,dword ptr
00401A5Aor eax,2
00401A5Dmov dword ptr ,eax
test.c = 2;
00401A60mov eax,dword ptr
00401A63and eax,3
00401A66or eax,8
00401A69mov dword ptr ,eax
printf("a = %d\nb = %d\nc = %d\n", test.a, test.b, test.c);
00401A6Cmov eax,dword ptr
00401A6Fshr eax,2
00401A72and eax,3FFFFFFFh
00401A77push eax
00401A78mov ecx,dword ptr
00401A7Bshr ecx,1
00401A7Dand ecx,1
00401A80push ecx
00401A81mov edx,dword ptr
00401A84and edx,1
00401A87push edx
00401A88push offset string "a = %d\nb = %d\nc = %d\n" (0493EECh)
00401A8Dcall _printf (03FC07Ah)
00401A92add esp,10h
printf("sizeof for test %d", sizeof(test));
00401A95push 4
00401A97push offset string "sizeof for test %d" (0493FF0h)
00401A9Ccall _printf (03FC07Ah)
00401AA1add esp,8
return 0;
00401AA4xor eax,eax struct Test
{
unsigned int a : 8;
/*unsigned int b:16;*/
/*unsigned int c:16;*/
/*unsigned int c:2;*/
};
struct Test test;
test.a = 0;
00F31A4Emov eax,dword ptr
00F31A51and eax,0FFFFFF00h
00F31A56mov dword ptr ,eax
/*test.b = 1;*/
/*test.c = 2;*/
/*printf("a = %d\nb = %d\nc = %d\n", test.a, test.b, test.c);*/
printf("sizeof for test %d", sizeof(test));
00F31A59push 4
00F31A5Bpush offset string "sizeof for test %d" (0FC3EECh)
00F31A60call _printf (0F2C07Ah)
00F31A65add esp,8
return 0;
00F31A68xor eax,eax 人造人 发表于 2018-5-7 16:58
{:10_266:}还不会汇编语言,C快学完了正想这要不要学汇编呢,谢谢了 奥普瓯江 发表于 2018-5-7 22:44
还不会汇编语言,C快学完了正想这要不要学汇编呢,谢谢了
想要深入理解C语言,就要学习汇编语言
人造人 发表于 2018-5-7 22:49
想要深入理解C语言,就要学习汇编语言
嗯嗯想继续把C学下去,正考虑是接着学C++还是汇编呢,因为在网上看到好多文章都说,要想学好C或者想知道C的运作原理就需要学汇编,但是没有什么思路,不知道是否可以给一些建议,比如看什么书或者在什么系统上学,我现在用的是Centos,和ubuntu,在网上找了一些文章说学intel的但是我想学linux的,因为我还想顺道学学linux script,不知道能否给说一下 奥普瓯江 发表于 2018-5-9 10:01
嗯嗯想继续把C学下去,正考虑是接着学C++还是汇编呢,因为在网上看到好多文章都说,要想学好C或者想知道C ...
先学汇编语言吧,王爽的8086汇编
页:
[1]