像二进制这样的boost库中有什么东西吗?例如,我想写:
binary<10101> a;
我很惭愧地承认我曾试图找到它(Google,Boost),但没有结果。他们提到了一些关于binary_int&lt;&gt;但我既不能找到,也不能找到我要包含的头文件;
感谢您的帮助。
答案 0 :(得分:12)
有BOOST_BINARY
宏。像这样使用
int array[BOOST_BINARY(1010)];
// equivalent to int array[012]; (decimal 10)
继续你的例子:
template<int N> struct binary { static int const value = N; };
binary<BOOST_BINARY(10101)> a;
一旦某些编译器支持C ++ 0x的用户定义文字,您就可以编写
template<char... digits>
struct conv2bin;
template<char high, char... digits>
struct conv2bin<high, digits...> {
static_assert(high == '0' || high == '1', "no bin num!");
static int const value = (high - '0') * (1 << sizeof...(digits)) +
conv2bin<digits...>::value;
};
template<char high>
struct conv2bin<high> {
static_assert(high == '0' || high == '1', "no bin num!");
static int const value = (high - '0');
};
template<char... digits>
constexpr int operator "" _b() {
return conv2bin<digits...>::value;
}
int array[1010_b];