如何判斷big-endian還是little-endian?

來源:互聯網
上載者:User

結合這一篇http://blog.csdn.net/linygood/article/details/6872926中提到的關於CPU內型的判斷,以及自己看到的一個聯合體執行個體分析一下

#include <stdio.h>int main(){      union{                                                           int i;           struct{                                                   char first;              char second;            }half;       }number;      number.i=0x4241;       printf("%c%c\n", number.half.first,   number.half.second);      number.half.first='a';                        number.half.second='b';      printf("%x\n", number.i);      }

這裡需要對union的儲存方式和CPU位元組序要有所瞭解。numbe.i=0x4241,對於little-endian實際在記憶體中儲存方式為:

低地址:  0x4241

高地址: 0x0000

而union的所有成員都是從低地址開始存放。因此number.half.first=0x41, number.half.second=0x42,所以輸出:AB

而number.half.first='a'; number.half.second='b';之後記憶體如下:

低地址: 0x6261

高地址: 0x0000

所以number.i=0x0000 6261

輸出:6261

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.