- climits[meta header]
- macro[meta id-type]
# define CHAR_BIT implementation-defined
1バイトのビット数を表す。#if
などのプリプロセッサディレクティブで使用できる。
具体的な値は実装依存であるが、8
以上であることが規格で定められている。
#include <climits>
#include <iostream>
int main()
{
std::cout << CHAR_BIT << '\n';
}
8
- C++03
- C++11
- Clang: 3.0, 3.1, 3.2, 3.3, 3.4
- GCC: 4.3.6, 4.4.7, 4.5.3, 4.5.4, 4.6.4, 4.7.3, 4.8.1, 4.8.2, 4.9.0
- ICC: ??
- Visual C++: 2003, 2005, 2008, 2010