std::bitset<N>::to_ulong
來自 cppreference.com
unsigned long to_ulong() const |
(constexpr 自 C++23 起) | |
將 bitset 的內容轉換為 unsigned long 整型。
bitset 的第一位對應於數字的最低有效位,最後一位對應於最高有效位。
目錄 |
[編輯] 引數
(無)
[編輯] 返回值
轉換後的整數。
[編輯] 異常
如果值不能表示為 unsigned long,則丟擲 std::overflow_error。
[編輯] 示例
執行此程式碼
#include <bitset> #include <iostream> #include <stdexcept> int main() { for (unsigned long i = 0; i < 10; ++i) { std::bitset<5> b(i); std::bitset<5> b_inverted = ~b; std::cout << i << '\t' << b << '\t' << b_inverted << '\t' << b_inverted.to_ulong() << '\n'; } std::cout << std::bitset<32>().to_string('-') << '\n'; try { std::bitset<128> x(42); std::cout << x.to_ulong() << '\n'; x.flip(); std::cout << x.to_ulong() << '\n'; // throws } catch (const std::overflow_error& ex) { std::cout << "ex: " << ex.what() << '\n'; } }
可能的輸出
0 00000 11111 31 1 00001 11110 30 2 00010 11101 29 3 00011 11100 28 4 00100 11011 27 5 00101 11010 26 6 00110 11001 25 7 00111 11000 24 8 01000 10111 23 9 01001 10110 22 -------------------------------- 42 ex: bitset to_ulong overflow error
[編輯] 參閱
返回資料的字串表示 (public 成員函式) | |
(C++11) |
返回資料的 unsigned long long 整型表示 (public 成員函式) |