Java C++ Python PHP JS等各种语言中的INT最值

Java:

Integer.MAX_VALUE;
Integer.MIN_VALUE;

C++

INT_MAX
INT_MIN <limit.h>
有些其他头文件也有引用

Python

>>> import sys
>>> print sys.maxint
9223372036854775807
>>>negmaxint = - sys.maxint -1
#64位机器

PHP

echo PHP_INT_MAX . '<br/>';
echo PHP_INT_SIZE . '<br/>'; 9223372036854775807
8 未看到最小值,可以参考Python

Javascript

JavaScript数字均为64位
上一篇:VS中常用C#代码段快速输入总结


下一篇:Grant的时候报错的解决:Access denied for user 'root'@'localhost' (using password: YES)