C++ SHRT_MAX 宏常量
SHRT_MAX常量是climits头部定义的宏常量,用于获取short int对象的最大值,返回short int对象可以存储的最大值,即32767。
注意:
- 实际值取决于编译器架构或库实现。
- 我们也可以使用
<limits.h>
头文件而不是<climits>
两个库中都定义了作为 SHRT_MAX 常量的头文件。
SHRT_MAX 常量的语法:
SHRT_MAX
例:
Constant call: cout << SHRT_MAX; Output: 32767
用于演示带有 climits 标头的 SHRT_MAX 常量示例的 C++ 代码
// C++ code to demonstrate example of
// SHRT_MAX constant with climits header
#include<iostream>
#include<climits>
using namespace std;
int main()
{
//prinitng the value of SHRT_MAX
cout<<"SHRT_MAX:"<<SHRT_MAX<<endl;
return 0;
}
输出
SHRT_MAX:32767
用limits.h头文件演示SHRT_MAX常量示例的C++代码
// C++ code to demonstrate example of
// SHRT_MAX constant with <limits.h> header file
#include<iostream>
#include<limits.h>
using namespace std;
int main()
{
//prinitng the value of SHRT_MAX
cout<<"SHRT_MAX:"<<SHRT_MAX<<endl;
return 0;
}
输出
SHRT_MAX:32767
相关用法
- C++ SHRT_MIN用法及代码示例
- C++ String swap()用法及代码示例
- C++ String back()用法及代码示例
- C++ String append()用法及代码示例
- C++ Stack push()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ Stack empty()用法及代码示例
- C++ String begin()用法及代码示例
- C++ Stack size()用法及代码示例
- C++ String size()用法及代码示例
- C++ String resize()用法及代码示例
- C++ String Find()用法及代码示例
- C++ String crend()用法及代码示例
- C++ String compare()用法及代码示例
- C++ String empty()用法及代码示例
- C++ String replace()用法及代码示例
- C++ String at()用法及代码示例
- C++ String insert()用法及代码示例
- C++ String clear()用法及代码示例
- C++ Static member用法及代码示例
注:本文由纯净天空筛选整理自 SHRT_MAX constant with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。