std::has_single_bit
来自 cppreference.com
定义在头文件 <bit> 中 |
||
template< class T > constexpr bool has_single_bit( T x ) noexcept; |
(自 C++20 起) | |
检查 x 是否是 2 的整数次幂。
仅当 T
是无符号整型时(即 unsigned char、unsigned short、unsigned int、unsigned long、unsigned long long 或扩展无符号整型),此重载才会参与重载解析。
内容 |
[编辑] 参数
x | - | 无符号整型值 |
[编辑] 返回值
如果 x 是 2 的整数次幂,则为 true;否则为 false。
[编辑] 注释
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_int_pow2 |
202002L | (C++20) | 2 的整数次幂运算 |
[编辑] 可能的实现
第一个版本 |
---|
template<std::unsigned_integral T> requires !std::same_as<T, bool> && !std::same_as<T, char> && !std::same_as<T, char8_t> && !std::same_as<T, char16_t> && !std::same_as<T, char32_t> && !std::same_as<T, wchar_t> constexpr bool has_single_bit(T x) noexcept { return x && !(x & (x - 1)); } |
第二个版本 |
template<std::unsigned_integral T> requires !std::same_as<T, bool> && !std::same_as<T, char> && !std::same_as<T, char8_t> && !std::same_as<T, char16_t> && !std::same_as<T, char32_t> && !std::same_as<T, wchar_t> constexpr bool has_single_bit(T x) noexcept { return std::popcount(x) == 1; } |
[编辑] 示例
运行此代码
#include <bit> #include <bitset> #include <cmath> #include <iostream> int main() { for (auto u = 0u; u != 10; ++u) { std::cout << "u = " << u << " = " << std::bitset<4>(u); if (std::has_single_bit(u)) // `ispow2` before P1956R1 std::cout << " = 2^" << std::log2(u) << " (is power of two)"; std::cout << '\n'; } }
输出
u = 0 = 0000 u = 1 = 0001 = 2^0 (is power of two) u = 2 = 0010 = 2^1 (is power of two) u = 3 = 0011 u = 4 = 0100 = 2^2 (is power of two) u = 5 = 0101 u = 6 = 0110 u = 7 = 0111 u = 8 = 1000 = 2^3 (is power of two) u = 9 = 1001
[编辑] 另请参阅
(C++20) |
计算无符号整数中 1 位的数量 (函数模板) |
返回设置为 true 的位数 ( std::bitset<N> 的公有成员函数) | |
访问特定位 ( std::bitset<N> 的公有成员函数) |