C++ CHAR_BIT 宏常量
CHAR_BIT常量是climits头中定义的宏常量,用于获取char对象的总位数,返回char对象的位数,为8位。
注意:
- 实际值取决于编译器架构或库实现。
- 我们也可以使用
<limits.h>
头文件而不是<climits>
两个库中都定义了作为 CHAR_BIT 常量的头文件。
CHAR_BIT 常量的语法:
CHAR_BIT
例:
Constant call: cout << CHAR_BIT; Output: 8
用于演示带有 climits 标头的 CHAR_BIT 常量示例的 C++ 代码
// C++ code to demonstrate example of
// CHAR_BIT constant with climits header
#include<iostream>
#include<climits>
using namespace std;
int main()
{
//prinitng the value of CHAR_BIT
cout<<"CHAR_BIT:"<<CHAR_BIT<<endl;
return 0;
}
输出
CHAR_BIT:8
用limits.h头文件演示CHAR_BIT常量示例的C++代码
// C++ code to demonstrate example of
// CHAR_BIT constant with <limits.h> header file
#include<iostream>
#include<limits.h>
using namespace std;
int main()
{
//prinitng the value of CHAR_BIT
cout<<"CHAR_BIT:"<<CHAR_BIT<<endl;
return 0;
}
输出
CHAR_BIT:8
相关用法
- C++ CHAR_MIN用法及代码示例
- C++ CHAR_MAX用法及代码示例
- 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()用法及代码示例
- C++ Vector front()用法及代码示例
注:本文由纯净天空筛选整理自 CHAR_BIT constant with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。