c++11 long long 类型
代码如下~
#include#include using namespace std;int main(){ cout << "type: \t\t" << "************size**************"<< endl; cout << "bool: \t\t" << "所占字节数:" << sizeof(long long); cout << "\t最大值:" << (numeric_limits ::max)(); cout << "\t\t最小值:" << (numeric_limits ::min)() << endl; // << "\t最大值:" << (numeric_limits ::max)() << "\t最小值:" << (numeric_limits ::min)() << endl; cout << "type: \t\t" << "************size**************"<< endl; return 0; }
PS:limits是表示我们数据类型范围的一个类,大家可以进入这个类中看看