当前位置:网站首页>如何用程序确认当前系统的存储模式?
如何用程序确认当前系统的存储模式?
2022-07-06 14:40:00 【是北豼不太皮吖】
union 关键字
union 关键字的用法与 struct 的用法非常类似。
union 维护足够的空间来置放多个数据成员中的“一种”,而不是为每一个数据成员配置空间,在 union 中所有的数据成员共用一个空间,同一时间只能储存其中一个数据成员,所有的数据成员具有相同的起始地址。
union StateMachine
{
char character;
int number;
char *str;
double exp;
};
一个 union 只配置一个足够大的空间以来容纳最大长度的数据成员,以上例而言,最大长度是 double 型态,所以 StateMachine 的空间大小就是 double 数据类型的大小。
大小端模式对 union 类型数据的影响
union
{
int i;
char a[2];
}*p, u;
p = &u;
p->a[0] = 0x39;
p->a[1] = 0x38;
p.i 的值应该为多少呢?
其值由系统所采用的 存储模式 和 int 类型 所占存储空间的字节数决定
当int为4字节时
答:当为大端模式时0x39380000
答:当为小端模式时0x00003839
这里需要考虑存储模式:大端模式和小端模式。
大端模式(Big_endian):字数据的高字节存储在低地址中,而字数据的低字节则存放在高地址中。
小端模式(Little_endian):字数据的高字节存储在高地址中,而字数据的低字节则存放在低地址中。
union 型数据所占的空间等于其最大的成员所占的空间。对 union 型的成员的存取都是相对于该联合体基地址的偏移量为 0 处开始,也就是联合体的访问不论对哪个变量的存取都是从 union 的首地址位置开始。
如何用程序确认当前系统的存储模式?
请写一个 C 函数,若处理器是Big_endian 的,则返回 0;若是 Little_endian 的,则返回 1。
假设 int 类型变量 i 被初始化为 1。
以大端模式存储,其内存布局如下图:
以小端模式存储,其内存布局如下图:
变量 i 占 4 个字节,但只有一个字节的值为 1,另外三个字节的值都为 0。如果取出低地址上的值为 0,毫无疑问,这是大端模式;如果取出低地址上的值为 1,毫无疑问,这是小端模式。
可以利用 union 类型数据的特点:所有成员的起始地址一致。
int checkSystem( )
{
union check
{
int i;
char ch;
} c;
c.i = 1;
return (c.ch ==1);
}
可以用这个函数来测试你当前系统的存储模式了。
边栏推荐
- 2022-07-05 stonedb的子查询处理解析耗时分析
- Assembly and Interface Technology Experiment 6 - ADDA conversion experiment, AD acquisition system in interrupt mode
- SQL Server生成自增序号
- ZABBIX proxy server and ZABBIX SNMP monitoring
- Solve project cross domain problems
- AI enterprise multi cloud storage architecture practice | Shenzhen potential technology sharing
- 第4章:再谈类的加载器
- 基於 QEMUv8 搭建 OP-TEE 開發環境
- 2500个常用中文字符 + 130常用中英文字符
- qt quick项目offscreen模式下崩溃的问题处理
猜你喜欢
在IPv6中 链路本地地址的优势
重磅新闻 | Softing FG-200获得中国3C防爆认证 为客户现场测试提供安全保障
zabbix 代理服务器 与 zabbix-snmp 监控
Memorabilia of domestic database in June 2022 - ink Sky Wheel
2022年6月国产数据库大事记-墨天轮
GPS from getting started to giving up (12), Doppler constant speed
0 basic learning C language - interrupt
3DMAX assign face map
2500 common Chinese characters + 130 common Chinese and English characters
Classic sql50 questions
随机推荐
GPS from getting started to giving up (12), Doppler constant speed
[sciter]: encapsulate the notification bar component based on sciter
Oracle Performance Analysis 3: introduction to tkprof
UNI-Admin基础框架怎么关闭创建超级管理员入口?
微信红包封面小程序源码-后台独立版-带测评积分功能源码
0 basic learning C language - interrupt
【sdx62】WCN685X将bdwlan.bin和bdwlan.txt相互转化操作方法
[线性代数] 1.3 n阶行列式
zabbix 代理服务器 与 zabbix-snmp 监控
Support multiple API versions in flask
解决项目跨域问题
pytorch_YOLOX剪枝【附代码】
3DMax指定面贴图
GNN,请你的网络层数再深一点~
剪映+json解析将视频中的声音转换成文本
Notes de développement du matériel (10): flux de base du développement du matériel, fabrication d'un module USB à RS232 (9): création de la Bibliothèque d'emballage ch340g / max232 SOP - 16 et Associa
Assembly and interface technology experiment 5-8259 interrupt experiment
Wechat red envelope cover applet source code - background independent version - source code with evaluation points function
Unity3d minigame-unity-webgl-transform插件转换微信小游戏报错To use dlopen, you need to use Emscripten‘s...问题
Management background --4, delete classification