寫了這樣一段代碼,想要將數據按字節打印。(小端機器)
#include <stdio.h>
typedef char * byte_pointer;
void show_bytes(byte_pointer data, int len)
{
int i = 0;
for (i=0; i<len; ++i)
{
printf("0x%.2x ", data[i]);
}
printf("\n");
}
void main()
{
int x = -2;
show_bytes((byte_pointer)&x, sizeof(int));
int xx = x>>2;
show_bytes((byte_pointer)&xx, sizeof(int));
return;
}
打印結果為:
luocanwei@luocanwei-Aspire-5750G:~/computer systems$ ./test
0xfffffffe 0xffffffff 0xffffffff 0xffffffff
0xffffffff 0xffffffff 0xffffffff 0xffffffff
這不是我想要的,改為
typedef unsigned char * byte_pointer;
才是我要的結果:
luocanwei@luocanwei-Aspire-5750G:~/computer systems$ ./test
0xfe 0xff 0xff 0xff
0xff 0xff 0xff 0xff
到底打印單字節有符號的char時,為什麼會出現打印成32位數據;而如果是無符號則不會?難道聲明為無符號打印,打印“%x”也是無符號?求指導,謝謝。
%x 其實接收的是 unsigned int,4字節。所以用 char/unsigned char 會有類型提升的問題,有符號的 0xff 提升為 0xffffffff、0xfe 提升為 0xfffffffe,無符號的 0xff 提升為 0x000000ff、0xfe 提升為 0x000000fe。