C++入门——有符号类型与无符号类型对比

大家好


下面通过一段代码说明有符号型与无符号型的区别

#include <iostream>
#define ZERO 0
#include <climits>

int main()
{
	using namespace std;
	short sam = SHRT_MAX;//SHRT_MAX为short的最大取值
	unsigned short sue = sam;

	cout << "sam" << sam << endl;
	cout << "sue" << sue << endl;

	sam = sam + 1;
	sue = sue + 1;
	cout << "sam" << sam << endl;
	cout << "sue" << sue << endl;

	sam = ZERO;
	sue = ZERO;
	cout << "sam" << sam << endl;
	cout << "sue" << sue << endl;

	sam = sam - 1;
	sue = sue - 1;
	cout << "sam" << sam << endl;
	cout << "sue" << sue << endl;

	system("pause");

	return 0;
}
运行结果如下



可见,一旦超过范围,其值将为范围另一端的取值。

即对有符号型:数据从0变化至32767,32767跳变至-32768,-32768再变化至-1,-1跳变至0。

对无符号型:数据从0变化至+65535,+65535跳变至0。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值