C程序中 : 冒号的作用是什么?
typedefstruct{charmic:1;charmic20:1;charline:1;charfmin:1;}ain_t;...
typedef struct
{
char mic:1;
char mic20:1;
char line:1;
char fmin:1;
}ain_t; 展开
{
char mic:1;
char mic20:1;
char line:1;
char fmin:1;
}ain_t; 展开
3个回答
推荐于2018-06-08
展开全部
这是位域
冒号后面的数字表示结构成员所占的位长度
举个例子
// VC2005下测试通过
#include <stdio.h>
#include <string.h>
struct t {
unsigned char a : 1;
unsigned char b : 1;
unsigned char c : 1;
unsigned char d : 1;
unsigned char e : 2;
unsigned char f : 2;
};
int main(void)
{
struct t tt;
memset(&tt, 0, sizeof(struct t)); // 对变量置0
tt.a = 1; // 第一位置1
tt.c = 1; // 第三位置1
tt.f = 3; // 第七位和第八位置1
// 结果为 1100 0101 = 0xc5
printf("size of t = %d\n", sizeof(t));
printf("tt = %x\n", (unsigned int)*(unsigned char *)&tt);
getchar();
return 0;
}
冒号后面的数字表示结构成员所占的位长度
举个例子
// VC2005下测试通过
#include <stdio.h>
#include <string.h>
struct t {
unsigned char a : 1;
unsigned char b : 1;
unsigned char c : 1;
unsigned char d : 1;
unsigned char e : 2;
unsigned char f : 2;
};
int main(void)
{
struct t tt;
memset(&tt, 0, sizeof(struct t)); // 对变量置0
tt.a = 1; // 第一位置1
tt.c = 1; // 第三位置1
tt.f = 3; // 第七位和第八位置1
// 结果为 1100 0101 = 0xc5
printf("size of t = %d\n", sizeof(t));
printf("tt = %x\n", (unsigned int)*(unsigned char *)&tt);
getchar();
return 0;
}
2013-12-13
展开全部
赋予变量默认值。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-13
展开全部
大哥,,,那是分号,不是冒号。。- -#
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询