C++ SHRT_MIN 宏常量
SHRT_MIN常量是climits頭部定義的宏常量,用於獲取short int對象的最小值,返回short int對象可以存儲的最小值,即-32768。
注意:
- 實際值取決於編譯器架構或庫實現。
- 我們也可以使用
<limits.h>
頭文件而不是<climits>
兩個庫中都定義了作為 SHRT_MIN 常量的頭文件。
SHRT_MIN 常量的語法:
SHRT_MIN
例:
Constant call: cout << SHRT_MIN; Output: -32768
用於演示帶有 climits 標頭的 SHRT_MIN 常量示例的 C++ 代碼
// C++ code to demonstrate example of
// SHRT_MIN constant with climits header
#include<iostream>
#include<climits>
using namespace std;
int main()
{
//prinitng the value of SHRT_MIN
cout<<"SHRT_MIN:"<<SHRT_MIN<<endl;
return 0;
}
輸出
SHRT_MIN:-32768
用limits.h頭文件演示SHRT_MIN常量示例的C++代碼
// C++ code to demonstrate example of
// SHRT_MIN constant with <limits.h> header file
#include<iostream>
#include<limits.h>
using namespace std;
int main()
{
//prinitng the value of SHRT_MIN
cout<<"SHRT_MIN:"<<SHRT_MIN<<endl;
return 0;
}
輸出
SHRT_MIN:-32768
相關用法
- C++ SHRT_MAX用法及代碼示例
- 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_MIN constant with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。