std::bitset<N>::size
来自 cppreference.com
std::size_t size() const; |
(自 C++11 起为 noexcept) (自 C++11 起为 constexpr) |
|
返回该 bitset 持有的位数。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
该 bitset 持有的位数,即模板参数 N
。
[编辑] 示例
运行此代码
#include <bitset> #include <iostream> int main() { std::cout << std::bitset<0x400>().size() << '\n'; }
输出
1024
[编辑] 另请参阅
返回设置为 true 的位数 (公共成员函数) |