博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
B00002 C语言位字段实例
阅读量:6291 次
发布时间:2019-06-22

本文共 1112 字,大约阅读时间需要 3 分钟。

本程序源自维基百科。

Declaring a bit field in C:

#include 
// opaque and show#define YES 1#define NO 0// line styles#define SOLID 1#define DOTTED 2#define DASHED 3// primary colors#define BLUE 4 /* 100 */#define GREEN 2 /* 010 */#define RED 1 /* 001 */// mixed colors#define BLACK 0 /* 000 */#define YELLOW (RED | GREEN) /* 011 */#define MAGENTA (RED | BLUE) /* 101 */#define CYAN (GREEN | BLUE) /* 110 */#define WHITE (RED | GREEN | BLUE) /* 111 */const char * colors[8] = {"Black", "Red", "Green", "Yellow", "Blue", "Magenta", "Cyan", "White"};// bit field box propertiesstruct box_props{ unsigned int opaque : 1; unsigned int fill_color : 3; unsigned int : 4; // fill to 8 bits unsigned int show_border : 1; unsigned int border_color : 3; unsigned int border_style : 2; unsigned int : 0; // fill to nearest byte (16 bits) unsigned char width : 4, // Split a byte into 2 fields of 4 bits height : 4;};

转载于:https://www.cnblogs.com/tigerisland/p/7564886.html

你可能感兴趣的文章
PHP版微信权限验证配置,音频文件下载,FFmpeg转码,上传OSS和删除转存服务器本地文件...
查看>>
教程前言 - 回归宣言
查看>>
PHP 7.1是否支持操作符重载?
查看>>
Vue.js 中v-for和v-if一起使用,来判断select中的option为选中项
查看>>
Java中AES加密解密以及签名校验
查看>>
定义内部类 继承 AsyncTask 来实现异步网络请求
查看>>
VC中怎么读取.txt文件
查看>>
如何清理mac系统垃圾
查看>>
企业中最佳虚拟机软件应用程序—Parallels Deskto
查看>>
Nginx配置文件详细说明
查看>>
怎么用Navicat Premium图标编辑器创建表
查看>>
Spring配置文件(2)配置方式
查看>>
MariaDB/Mysql 批量插入 批量更新
查看>>
ItelliJ IDEA开发工具使用—创建一个web项目
查看>>
solr-4.10.4部署到tomcat6
查看>>
切片键(Shard Keys)
查看>>
淘宝API-类目
查看>>
virtualbox 笔记
查看>>
Git 常用命令
查看>>
驰骋工作流引擎三种项目集成开发模式
查看>>