C++ LLONG_MIN 宏常量
LLONG_MIN常量是climits头中定义的宏常量,用于获取long long int对象的最小值,返回long long int对象可以存储的最小值,即-9223372036854775808(32位)编译器)。
注意:
- 实际值取决于编译器架构或库实现。
- 我们也可以使用
<limits.h>
头文件而不是<climits>
两个库中都定义了作为 LLONG_MIN 常量的头文件。
LLONG_MIN 常量的语法:
LLONG_MIN
例:
Constant call: cout << LLONG_MIN; Output: -9223372036854775808
用于演示带有 climits 标头的 LLONG_MIN 常量示例的 C++ 代码
// C++ code to demonstrate example of
// LLONG_MIN constant with climits header
#include<iostream>
#include<climits>
using namespace std;
int main()
{
//prinitng the value of LLONG_MIN
cout<<"LLONG_MIN:"<<LLONG_MIN<<endl;
return 0;
}
输出
LLONG_MIN:-9223372036854775808
用limits.h头文件演示LLONG_MIN常量示例的C++代码
// C++ code to demonstrate example of
// LLONG_MIN constant with <limits.h> header file
#include<iostream>
#include<limits.h>
using namespace std;
int main()
{
//prinitng the value of LLONG_MIN
cout<<"LLONG_MIN:"<<LLONG_MIN<<endl;
return 0;
}
输出
LLONG_MIN:-9223372036854775808
相关用法
- C++ LLONG_MAX用法及代码示例
- C++ List max_size()用法及代码示例
- C++ List push_back()用法及代码示例
- C++ List insert()用法及代码示例
- C++ List empty()用法及代码示例
- C++ List merge()用法及代码示例
- C++ List reverse()用法及代码示例
- C++ List splice()用法及代码示例
- C++ LONG_MAX用法及代码示例
- C++ List swap()用法及代码示例
- C++ LONG_MIN用法及代码示例
- C++ List unique()用法及代码示例
- C++ List resize()用法及代码示例
- C++ List assign()用法及代码示例
- C++ List size()用法及代码示例
- C++ List back()用法及代码示例
- C++ List sort()用法及代码示例
- C++ List emplace()用法及代码示例
- C++ List pop_back()用法及代码示例
- C++ List push_front()用法及代码示例
注:本文由纯净天空筛选整理自 LLONG_MIN constant with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。