这段代码主要是学习强制转换,同时把一些数据类型也搞得更清楚一些,还有转化为字节表示的方法。
typedef unsigned char *byte_pointer;
这条语句看到一个更加通顺的解释
将byte_pointer 指向 类型为unsigned char对象 的 指针。(明确重命名之后他是一个指针,指向的数据类型)
show_byte 输入字节序列的地址,取字节数,打印出每个以十六进制表示的字节。
%.2x:至少两个数字的十六进制输出
(unsigned char)&x,把定义的数据类型强制转化为unsigned char*, 可以让编译器将指针看做指向了新的字符序列,而不是指向原来数据类型的对象。这个指针被看做原对象使用的最低字节序列的地址。
#include<stdio.h>
typedef unsigned char *byte_pointer;
void show_bytes(byte_pointer start, size_t len)
{
size_t i;
for (i = 0; i < len; i++)
printf("%.2x ", start[i]);
printf("\n");
}
void show_int(int x)
{
show_bytes((byte_pointer)&x, sizeof(int));
}
void show_float(float x)
{
show_bytes((byte_pointer)&x, sizeof(float));
}
void show_pointer(void* x)
{
show_bytes((byte_pointer)&x, sizeof(void*));
}
int main()
{
show_int(12345);
show_float(12345);
show_pointer((void*)12345);
return 0;
}
12345的十六进制是: 0x00003039 ,可见是一种小端机器。