描述
C++std::bitset::reference是提供 l-value 的嵌入式类,可以从std::bitset::operator[].任何通过位集执行的读或写操作std::bitset::reference最终读取或写入整个底层位集。
声明
以下是 std::bitset::reference 类形式 std::bitset 标头的声明。
C++98
class bitset::reference {
friend class bitset;
reference(); /* Private constructor */
public:
~reference();
operator bool() const;
reference& operator = (bool x);
reference& operator = (const reference& x);
reference& flip();
bool operator~() const;
}
C++11
class bitset::reference {
friend class bitset;
reference() noexcept; /* Private constructor */
public:
~reference();
operator bool() const noexcept;
reference& operator= (bool x) noexcept;
reference& operator= (const reference& x) noexcept;
reference& flip() noexcept;
bool operator~() const noexcept;
}
相关用法
- C++ Bitset reset()用法及代码示例
- C++ Bitset hash()用法及代码示例
- C++ Bitset to_string()用法及代码示例
- C++ Bitset bitset()用法及代码示例
- 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 - reference() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。