C++ 中的INT_MAX,INT_MIN数值大小操作
int占4字节32位,根据二进制编码的规则,
int_max = 2^31-1=2147483647
int_min= -2^31=-2147483648
c/c++中,所有超过该限值的数,都会出现溢出,出现warning,但是并不会出现error。
如果想表示的整数超过了该限值,可以使用长整型long long 占8字节64位。
补充:c++ 数值最大最小标识符一网打尽,int_min/ int_max/long_min/long_max 等等
我就废话不多说了,大家还是直接看代码吧~
constant | meaning | value |
---|---|---|
char_bit | number of bits in the smallest variable that is not a bit field. | 8 |
schar_min | minimum value for a variable of type signed char. | -128 |
schar_max | maximum value for a variable of type signed char. | 127 |
uchar_max | maximum value for a variable of type unsigned char. | 255 (0xff) |
char_min | minimum value for a variable of type char. | -128; 0 if /j option used |
char_max | maximum value for a variable of type char. | 127; 255 if /j option used |
mb_len_max | maximum number of bytes in a multicharacter constant. | 5 |
shrt_min | minimum value for a variable of type short. | -32768 |
shrt_max | maximum value for a variable of type short. | 32767 |
ushrt_max | maximum value for a variable of type unsigned short. | 65535 (0xffff) |
int_min | minimum value for a variable of type int. | -2147483647 - 1 |
int_max | maximum value for a variable of type int. | 2147483647 |
uint_max | maximum value for a variable of type unsigned int. | 4294967295 (0xffffffff) |
long_min | minimum value for a variable of type long. | -2147483647 - 1 |
long_max | maximum value for a variable of type long. | 2147483647 |
ulong_max | maximum value for a variable of type unsigned long. | 4294967295 (0xffffffff) |
llong_min | minimum value for a variable of type long long. | -9,223,372,036,854,775,807 - 1 |
llong_max | maximum value for a variable of type long long. | 9,223,372,036,854,775,807 |
ullong_max | maximum value for a variable of type unsigned long long. | 18,446,744,073,709,551,615 (0xffffffffffffffff) |
补充:c++中short的最小值shrt_min减1不是shrt_max的原因
最近在看一本一直都想看的书,c++ primer plus,本来想看的是c++ primer,结果买错了,反正都差不多。
在学习short,int,long的时候,看到书中这样写到:整型变量的行为就像里程表。如果超越了限制,其值将为范围另一端的取值。这句话我是这样理解的,假如我们设置了一个int型的整数,例如 int n_int = int_max; 那么,我们做 n_int+1时输出应为 int_min。结果的确是这样。但是short的有点特别,虽然不常见。
下面看一段程序:
int c_char = char_bit; int n_int = int_min; short n_short = shrt_min; long n_long = long_max; long long n_llong = llong_max; cout<< sizeof n_int<<" "<<sizeof n_short<<" "<<sizeof(n_short - 1)<<" "<<sizeof(n_long)<<" "<<sizeof(n_llong)<<endl; cout<<n_int - 1<<" "<< n_short - 1 <<" "<<n_long<<" "<<n_llong<<" "<<c_char<<endl; //n_short是short类型的最小值,理论上减1应为shrt_max的值,但结果不是
下面是程序结果:
解释:
程序中定义了n_int为int型的最小值,我们输出n_int-1时发现结果是int的最大值int_max。结果第二行第一个数。但是在程序的第四行我们定义了一个n_short,赋值shrt_min,然后输出n_short - 1,理论上说结果应该为32767,也就是shrt_max。但是结果不一样,那么结果为什么会这样呢?
我们可以看输出中的第一行,此行输出的是各个数值在计算机中占的字节数。在输出sizeof(n_short - 1)时,结果是4,也就是数n_short - 1现在是一个整型数。在c++中规定short是两个字节,也就是16位。但是在计算机中,short存储占4个字节,因此,在short超出范围的时候会自动转换成整型的数。
这里额外在说一点,c++中基本整型有5种:char、short、int、long、long long(c++11中)。这里注意,char是基本整型。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
上一篇: 那能给叔叔买包烟吗
下一篇: 基于 Python 实践感知器分类算法