[深入理解计算机系统]数据储存-大小端法与补码

#include <stdio.h>

typedef unsigned char *byte_pointer;

void show_byte(byte_pointer start,int len)
{
	int i;
	for(i=0;i<len;i++)
	{
		printf("%.2x",start[i]);
	}
	printf("\n");
}

void show_int(int x)
{
	show_byte((byte_pointer)&x,sizeof(int));
}

void show_float(float x){
	show_byte((byte_pointer)&x,sizeof(float));
}

void show_pointer(void *x){
	show_byte((byte_pointer)&x,sizeof(void *));
}

int main(){
	/*show_type(byte_pointer start,int len);*/
	short value = -0x12;
	short value2 = 0x12;
	byte_pointer valp = (byte_pointer)&value;
	byte_pointer valp2 = (byte_pointer)&value2;
	show_byte(valp,sizeof(short));
	show_byte(valp2,sizeof(short));
	/*show_int(value);
	show_float(value2);*/
	return 0;
}

显示结果:


0x12储存为1200,是因为Intel的机器大部分使用小端法储存数据(如果是大端法,该是0012)

-0x12储存为eeff,是因为负数在机器中以补码的形式储存,0x12取反再加一,再按照小端法,即为eeff。


如果将案例中的short改成int型,数据分别改为-12345和12345。如下代码所示:


int main(){
	/*show_type(byte_pointer start,int len);*/
	int value = -12345;
	int value2 = 12345;
	byte_pointer valp = (byte_pointer)&value;
	byte_pointer valp2 = (byte_pointer)&value2;
	show_byte(valp,sizeof(int));
	show_byte(valp2,sizeof(int));
	/*show_int(value);
	show_float(value2);*/
	return 0;
}

输出结果为:


备注:12345的二进制表示为00000000000000000011000000111001,八进制为00003039。故按照小端法,储存为3930000

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值