https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往

c++11新标准 01 long long 类型

c++11 long long 类型


代码如下~

#include <iostream>
#include <limits>  
using namespace std;
int main()
{
    cout << "type: \t\t" << "************size**************"<< endl;  
    cout << "bool: \t\t" << "所占字节数:" << sizeof(long long);  
    cout << "\t最大值:" << (numeric_limits<long long>::max)();  
    cout << "\t\t最小值:" << (numeric_limits<long long>::min)() << endl;  
    // << "\t最大值:" << (numeric_limits<string>::max)() << "\t最小值:" << (numeric_limits<string>::min)() << endl;  
    cout << "type: \t\t" << "************size**************"<< endl;  
    return 0;  
} 



PS:limits是表示我们数据类型范围的一个类,大家可以进入这个类中看看

posted @ 2016-04-06 22:43  鱼酱  阅读(830)  评论(0编辑  收藏  举报

https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往