码迷,mamicode.com
首页 > 编程语言 > 详细

[C/C++不常见语法特性]_[位域的使用细节]

时间:2014-05-04 09:24:53      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:c++   位域   注意   优点   使用场景   


场景:

1.位域作为一个控制空间大小的语法特性其实是有它自己的用武之地的,比如网络通讯的协议定制,使用位域为1来严格限制bool值为0,1等等.

2.它有一些细节需要注意,

第一: 位域的大小是值的类型的整数倍,不足整数倍的补全.如unsigned short的大小是16位,那么如果总值17位的话会自动补全到16*2=32位.

第二: 赋值当然需要位运算符或者不超过它的最大值的整数.


代码:

#include <stdlib.h>
#include <assert.h>
#include <time.h>
#include <iostream>
#include <string>
#include <vector>

using namespace std;

typedef unsigned int Bit;

class NetData
{
public:
	Bit type: 1;
	Bit valid: 1;
	Bit delay_second: 4;
	Bit command: 4;
	Bit finished: 1;
	Bit error: 4;
	unsigned char t: 2;
	
};



int main(int argc, char const *argv[])
{
	cout << "NetData size:" << sizeof(NetData) << endl;
	NetData nd;
	nd.type = 01;
	nd.valid = 00;
	nd.delay_second = 15; //如果是>15,gcc会有警告 warning: large integer implicitly truncated to unsigned type
	nd.command = 13;
	nd.finished = 1;
	nd.error = 2;

	cout << "nd.type: " << nd.type << endl
	     << "nd.valid: " << nd.valid << endl
	     << "nd.delay_second: " << nd.delay_second << endl 
	     << "nd.command: " << nd.command << endl
	     << "nd.finished: " << nd.finished << endl
	     << "nd.error: " << nd.error << endl
	     << endl;
	return 0;
}

输出:

NetData size:4
nd.type: 1
nd.valid: 0
nd.delay_second: 15
nd.command: 13
nd.finished: 1
nd.error: 2

参考: 《C++ Primer 3rd Edition》


[C/C++不常见语法特性]_[位域的使用细节],布布扣,bubuko.com

[C/C++不常见语法特性]_[位域的使用细节]

标签:c++   位域   注意   优点   使用场景   

原文地址:http://blog.csdn.net/infoworld/article/details/24932407

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!