C++ bitset to_ulong() 用于将 bitset 的内容转换为无符号长整数。它返回一个 unsigned long 的整数值,该整数值与 bitset 具有相同的位设置。
用法
unsigned long to_ulong();
参数
它不带任何参数。
返回值
它返回一个与 bitset 对象具有相同位表示的整数值。
例子1
#include <iostream>
#include <bitset>
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
例子2
#include <iostream>
#include <bitset>
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
相关用法
- C++ bitset to_ullong()用法及代码示例
- 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_ulong() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。