描述
C++ 構造函數std::bitset::bitset()從 c-style 字符串構造並初始化一個位集容器。
聲明
以下是 std::bitset::bitset() 構造函數形式 std::bitset 標頭的聲明。
C++11
template <class charT>
explicit bitset (const charT* str,
typename basic_string<charT>::size_type n = basic_string<charT>::npos,
charT zero = charT('0'), charT one = charT('1')
);
參數
str- 用於初始化位集的字符串。
n─ 來自的字符數str。
返回值
構造函數從不返回值。
異常
此成員函數從不拋出異常。
示例
以下示例顯示了 std::bitset::bitset() 構造函數的用法。
#include <iostream>
#include <bitset>
using namespace std;
int main(void) {
const char *s = "1100";
bitset<4>b(s);
cout << b << endl;
return 0;
}
讓我們編譯並運行上麵的程序,這將產生以下結果——
1100
相關用法
- 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++ std::string::push_back()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ Bitset Library - bitset() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。