📅  最后修改于: 2020-10-17 06:31:17             🧑  作者: Mango
C++ STL bitset.to_ulong()用于将位集的内容转换为无符号的长整数。它返回一个无符号长整数,其整数值与该位集具有相同的位集。
unsigned long to_ulong();
它不带任何参数。
它返回一个与位集对象具有相同位表示形式的Integer值。
#include
#include
using namespace std;
int main()
{
bitset<5> b;
b.set();
cout << b << " as an integer is : " << b.to_ulong();
return 0;
}
输出:
11111 as an integer is : 31
#include
#include
using namespace std;
int main()
{
bitset<6> b(string("011011"));
b.set();
int a=b.to_ulong();
cout << b << " as an integer is : " << a;
return 0;
}
输出:
111111 as an integer is : 63