C++ INT_MIN 宏常量
INT_MIN 常量是在 climits 頭文件中定義的宏常量,用於獲取有符號 int 對象的最小值,它返回有符號 int 對象可以存儲的最小值,即 -2147483648(在 32 位編譯器上) .
注意:
- 實際值取決於編譯器架構或庫實現。
- 我們也可以使用
<limits.h>
頭文件而不是<climits>
兩個庫中都定義了作為 INT_MIN 常量的頭文件。
INT_MIN 常量的語法:
INT_MIN
例:
Constant call: cout << INT_MIN; Output: -2147483648
用於演示帶有 climits 標頭的 INT_MIN 常量示例的 C++ 代碼
// C++ code to demonstrate example of
// INT_MIN constant with climits header
#include<iostream>
#include<climits>
using namespace std;
int main()
{
//prinitng the value of INT_MIN
cout<<"INT_MIN:"<<INT_MIN<<endl;
return 0;
}
輸出
INT_MIN:-2147483648
用limits.h頭文件演示INT_MIN常量示例的C++代碼
// C++ code to demonstrate example of
// INT_MIN constant with <limits.h> header file
#include<iostream>
#include<limits.h>
using namespace std;
int main()
{
//prinitng the value of INT_MIN
cout<<"INT_MIN:"<<INT_MIN<<endl;
return 0;
}
輸出
INT_MIN:-2147483648
相關用法
- C++ INT_MAX用法及代碼示例
- C++內聯函數用法及代碼示例
- C++ Implementing of strtok()用法及代碼示例
- C++ unordered_map cbegin用法及代碼示例
- C++ map lower_bound()用法及代碼示例
- C++ list assign()用法及代碼示例
- C++ std::max()用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ multimap key_comp()用法及代碼示例
- C++ Deque erase()用法及代碼示例
- C++ std::less_equal用法及代碼示例
- C++ set rbegin()用法及代碼示例
- C++ llround()用法及代碼示例
- C++ getline(string)用法及代碼示例
- C++ boost::algorithm::all_of()用法及代碼示例
- C++ string::length()用法及代碼示例
- C++ log2()用法及代碼示例
- C++ lrint() and llrint()用法及代碼示例
- C++ bitset all()用法及代碼示例
- C++ set upper_bound()用法及代碼示例
注:本文由純淨天空篩選整理自 INT_MIN constant with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。