描述
C++ 构造函数std::bitset::bitset()从 C++ 字符串对象构造并初始化一个位集容器。
声明
以下是 std::bitset::bitset() 构造函数形式 std::bitset 标头的声明。
C++98
template<class charT, class traits, class Alloc>
explicit bitset (const basic_string<charT,traits,Alloc>& str,
typename basic_string<charT,traits,Alloc>::size_type pos = 0,
typename basic_string<charT,traits,Alloc>::size_type n =
basic_string<charT,traits,Alloc>::npos
);
C++11
template <class charT, class traits, class Alloc>
explicit bitset (const basic_string<charT,traits,Alloc>& str,
typename basic_string<charT,traits,Alloc>::size_type pos = 0,
typename basic_string<charT,traits,Alloc>::size_type n =
basic_string<charT,traits,Alloc>::npos,
charT zero = charT('0'), charT one = charT('1')
);
参数
str- 用于初始化位集的字符串。
pos− 起始偏移量为str。
n- 来自的字符数str。
返回值
构造函数从不返回值。
异常
如果pos> str.size() 然后方法抛出超出范围异常。
示例
以下示例显示了 std::bitset::bitset() 构造函数的用法。
#include <iostream>
#include <bitset>
#include <string>
using namespace std;
int main(void) {
string s = "1100";
bitset<4>b(s);
cout << b << endl;
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果 -
1100
相关用法
- C++ Bitset bitset()用法及代码示例
- C++ Bitset reference()用法及代码示例
- C++ Bitset reset()用法及代码示例
- C++ Bitset hash()用法及代码示例
- C++ Bitset to_string()用法及代码示例
- C++ Bitset test()用法及代码示例
- C++ Bitset to_ulong()用法及代码示例
- C++ Bitset all()用法及代码示例
- C++ Bitset set()用法及代码示例
- C++ Bitset any()用法及代码示例
- C++ Bitset none()用法及代码示例
- C++ Bitset to_ullong()用法及代码示例
- C++ Bitset flip()用法及代码示例
- C++ Bitset count()用法及代码示例
- C++ Boost.Lexical_Cast用法及代码示例
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ Unordered_multimap reserve()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Bitset Library - bitset() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。