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;
展开
 我来答
匿名用户
推荐于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;
}
匿名用户
2013-12-13
展开全部
赋予变量默认值。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-12-13
展开全部
大哥,,,那是分号,不是冒号。。- -#
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式