当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ ULLONG_MAX用法及代码示例


C++ ULLONG_MAX 宏常量

ULLONG_MAX 常量是 climits 头中定义的宏常量,用于获取 unsigned long long int 对象的最大值,返回 unsigned long long int 对象可以存储的最大值,即 18446744073709551615(在 32位编译器)。

注意:

  • 实际值取决于编译器架构或库实现。
  • 我们也可以使用<limits.h>头文件而不是<climits>两个库中都定义了作为 ULLONG_MAX 常量的头文件。

ULLONG_MAX 常量的语法:

    ULLONG_MAX

例:

    Constant call:
    cout << ULLONG_MAX;

    Output:
    18446744073709551615

用于演示带有 climits 标头的 ULLONG_MAX 常量示例的 C++ 代码

// C++ code to demonstrate example of 
// ULLONG_MAX constant with climits header
#include<iostream>
#include<climits>
using namespace std;

int main()
{
   //prinitng the value of ULLONG_MAX
    cout<<"ULLONG_MAX:"<<ULLONG_MAX<<endl;
    return 0;
}

输出

ULLONG_MAX:18446744073709551615

用limits.h头文件演示ULLONG_MAX常量示例的C++代码

// C++ code to demonstrate example of 
// ULLONG_MAX constant with <limits.h> header file
#include<iostream>
#include<limits.h>
using namespace std;

int main()
{
   //prinitng the value of ULLONG_MAX
    cout<<"ULLONG_MAX:"<<ULLONG_MAX<<endl;
    return 0;
}

输出

ULLONG_MAX:18446744073709551615


相关用法


注:本文由纯净天空筛选整理自 ULLONG_MAX constant with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。