std::bitset::to_ullong
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
unsigned long long to_ullong() const |
(C++11 起) | |
bitset的内容转换成unsigned long long整数.
原文:
Converts the contents of the bitset to an unsigned long long integer.
bitset的第一比特的对应的至少显着的数量的数字,和最后位的最显着的数字对应.
原文:
The first bit of the bitset corresponds to the least significant digit of the number and the last bit corresponds to the most significant digit.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
转换成整数
[编辑] 例外
std::overflow_error如果该值不能表示在unsigned long long.
原文:
std::overflow_error if the value can not be represented in unsigned long long.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
返回一个字符串形式的数据 原文: returns a string representation of the data (公共成员函数) | |
返回unsigned long整数表示的数据 原文: returns an unsigned long integer representation of the data (公共成员函数) |