C++ bitset to_ullong() 用於將 bitset 的內容轉換為無符號長整型。它返回一個 unsigned long long,其整數值與 bitset 的位設置相同。
用法
unsigned long long to_ullong();
參數
它不帶任何參數。
返回值
它返回一個與 bitset 對象具有相同位表示的整數值。
例子1
#include <iostream>
#include <bitset>
using namespace std;
int main()
{
bitset<4> b;
b.set();
cout << b << " as an integer is:" << b.to_ullong();
return 0;
}
輸出:
1111 as an integer is:15
例子2
#include <iostream>
#include <bitset>
using namespace std;
int main()
{
bitset<6> b(string("001100"));
b.set();
int a=b.to_ullong();
cout << b << " as an integer is:" << a;
return 0;
}
輸出:
111111 as an integer is:63
相關用法
- C++ bitset to_ulong()用法及代碼示例
- C++ bitset to_string()用法及代碼示例
- C++ bitset test()用法及代碼示例
- C++ bitset all()用法及代碼示例
- C++ bitset operator[]用法及代碼示例
- C++ bitset none()用法及代碼示例
- C++ bitset set()用法及代碼示例
- C++ bitset flip()用法及代碼示例
- C++ bitset reset()用法及代碼示例
- C++ bitset any()用法及代碼示例
- C++ bitset count()用法及代碼示例
- C++ bitset size()用法及代碼示例
- C++ bitset::flip()用法及代碼示例
- C++ bit_and用法及代碼示例
- C++ boost::algorithm::all_of()用法及代碼示例
- C++ boost::algorithm::is_sorted()用法及代碼示例
- C++ boost::algorithm::all_of_equal()用法及代碼示例
- C++ boost::algorithm::any_of_equal()用法及代碼示例
- C++ boost::trim用法及代碼示例
- C++ boost::algorithm::any_of()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ bitset to_ullong() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。