c++11 标准模板(STL)(std::bitset)(四)

这篇具有很好参考价值的文章主要介绍了c++11 标准模板(STL)(std::bitset)(四)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

定义于头文件 <bitset>

template< std::size_t N >
class bitset;

 类模板 bitset 表示一个 N 位的固定大小序列。可以用标准逻辑运算符操作位集,并将它与字符串和整数相互转换。

bitset 满足可复制构造 (CopyConstructible) 及可复制赋值 (CopyAssignable) 的要求。

模板形参

N - 要为 bitset 分配存储的位数

成员类型

reference

表示到一个位的引用的代理类
(类)

修改器

进行二进制与、或、异或及非

std::bitset<N>::operator&=,|=,^=,~

bitset<N>& operator&=( const bitset<N>& other );

(1) (C++11 前)

bitset<N>& operator&=( const bitset<N>& other ) noexcept;

(C++11 起)

bitset<N>& operator|=( const bitset<N>& other );

(2) (C++11 前)

bitset<N>& operator|=( const bitset<N>& other ) noexcept;

(C++11 起)

bitset<N>& operator^=( const bitset<N>& other );

(3) (C++11 前)

bitset<N>& operator^=( const bitset<N>& other ) noexcept;

(C++11 起)

bitset<N> operator~() const;

(4) (C++11 前)

bitset<N> operator~() const noexcept;

(C++11 起)

 行二进制与、或、异或及非。

1) 设置位为 *thisother 的位的对应对上二进制与的结果。

2) 设置位为 *thisother 的位的对应对上二进制或的结果。

3) 设置位为 *thisother 的位的对应对上二进制异或的结果。

4) 返回翻转所有位的 *this 的临时副本(二进制非)。

注意 &= 、 |= 、 和 ^= 仅对拥有相同大小 N 的 bitset 定义。

参数

other - 另一 bitset

返回值

1-3) *this

4) bitset<N>(*this).flip()

进行二进制左移和右移

std::bitset<N>::operator<<,<<=,>>,>>=

bitset<N> operator<<( std::size_t pos ) const;

(1) (C++11 前)

bitset<N> operator<<( std::size_t pos ) const noexcept;

(C++11 起)

bitset<N>& operator<<=( std::size_t pos );

(2) (C++11 前)

bitset<N>& operator<<=( std::size_t pos ) noexcept;

(C++11 起)

bitset<N> operator>>( std::size_t pos ) const;

(3) (C++11 前)

bitset<N> operator>>( std::size_t pos ) const noexcept;

(C++11 起)

bitset<N>& operator>>=( std::size_t pos );

(4) (C++11 前)

bitset<N>& operator>>=( std::size_t pos ) noexcept;

(C++11 起)

进行二进制左移和二进制右移。移入零。

1-2) 进行二进制左移。 (2) 是破坏性的,即对当前对象进行迁移。

3-4) 进行二进制右移。 (4) 是破坏性的,即对当前对象进行迁移。

参数

pos - 移动位的位置数

返回值

1,3) 含有被迁移位的新 bitset 对象

2,4) *this

 文章来源地址https://www.toymoban.com/news/detail-476366.html

调用示例

#include <iostream>
#include <bitset>
#include <string>

template<size_t _Nb>
void printBitset(const std::string &name, const std::bitset<_Nb> &bitset)
{
    std::cout << name << ":  ";
    for (size_t index = 0; index < bitset.size(); index++)
    {
        std::cout << bitset[index] << " ";
    }
    std::cout << std::endl;
}

int main()
{
    std::cout << std::boolalpha;
    std::bitset<8> bitset1("101010");
    std::bitset<8> bitset2("100011");
    std::cout << "bitset1:              " << bitset1 << std::endl;
    std::cout << "bitset2:              " << bitset2 << std::endl;
    //1) 设置位为 *this 与 other 的位的对应对上二进制与的结果。
    std::cout << "bitset1 & bitset2:    " << (bitset1 & bitset2) << std::endl;
    //2) 设置位为 *this 与 other 的位的对应对上二进制或的结果。
    std::cout << "bitset1 | bitset2:    " << (bitset1 | bitset2) << std::endl;
    //3) 设置位为 *this 与 other 的位的对应对上二进制异或的结果。
    std::cout << "bitset1 ^ bitset2:    " << (bitset1 ^ bitset2) << std::endl;
    //4) 返回翻转所有位的 *this 的临时副本(二进制非)。
    std::bitset<8> bitset3 = ~bitset1;
    std::cout << "~bitset1:             " << bitset3 << std::endl;
    std::cout << std::endl;


    //进行二进制左移和二进制右移。移入零。
    //1-2) 进行二进制左移。 (2) 是破坏性的,即对当前对象进行迁移。
    std::bitset<8> bitset5("101010");
    std::bitset<8> bitset6 = bitset5 << 3;
    std::cout << "bitset5:              " << bitset5 << std::endl;
    std::cout << "bitset6:              " << bitset6 << std::endl;
    std::bitset<8> bitset7 = bitset5 <<= 3;
    std::cout << "bitset5:              " << bitset5 << std::endl;
    std::cout << "bitset7:              " << bitset7 << std::endl;

    //进行二进制左移和二进制右移。移入零。
    //3-4) 进行二进制右移。 (4) 是破坏性的,即对当前对象进行迁移。
    std::bitset<8> bitset8("101010");
    std::bitset<8> bitset9 = bitset8 >> 3;
    std::cout << "bitset8:              " << bitset5 << std::endl;
    std::cout << "bitset9:              " << bitset9 << std::endl;
    std::bitset<8> bitset10 = bitset8 >>= 3;
    std::cout << "bitset8:              " << bitset5 << std::endl;
    std::cout << "bitset10:             " << bitset10 << std::endl;
    std::cout << std::endl;

    return 0;
}

输出

c++11 标准模板(STL)(std::bitset)(四)

 

到了这里,关于c++11 标准模板(STL)(std::bitset)(四)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • c++11 标准模板(STL)(std::basic_ostream)(八)

    template     class CharT,     class Traits = std::char_traitsCharT class basic_ostream : virtual public std::basic_iosCharT, Traits 类模板 basic_ostream 提供字符流上的高层输出操作。受支持操作包含有格式输出(例如整数值)和无格式输出(例如生字符和字符数组)。此功能以 basic_streambuf 类所提供的接

    2024年02月12日
    浏览(39)
  • c++11 标准模板(STL)(std::basic_ifstream)(一)

    定义于头文件  fstream template     class CharT,     class Traits = std::char_traitsCharT class basic_ifstream : public std::basic_istreamCharT, Traits 类模板 basic_ifstream 实现文件流上的高层输入操作。它将 std::basic_istream 的高层接口赋予基于文件的流缓冲( std::basic_filebuf )。 std::basic_ifstream 的典型实

    2024年02月14日
    浏览(34)
  • c++11 标准模板(STL)(std::basic_stringstream)(四)

    template     class CharT,     class Traits = std::char_traitsCharT class basic_stringstream; (C++11 前) template     class CharT,     class Traits = std::char_traitsCharT,     class Allocator = std::allocatorCharT class basic_stringstream; (C++11 起) 类模板 std::basic_stringstream 实现基于字符串的流上的输入与输出操作。它等效

    2024年02月10日
    浏览(36)
  • c++11 标准模板(STL)(std::basic_istream)(三)

    template     class CharT,     class Traits = std::char_traitsCharT class basic_istream : virtual public std::basic_iosCharT, Traits  类模板 basic_istream 提供字符流上的高层输入支持。受支持操作包含带格式的输入(例如整数值或空白符分隔的字符与字符串)和无格式输入(例如未处理字符和字符数组)

    2024年02月13日
    浏览(39)
  • c++11 标准模板(STL)(std::basic_stringstream)(一)

    template     class CharT,     class Traits = std::char_traitsCharT class basic_stringstream; (C++11 前) template     class CharT,     class Traits = std::char_traitsCharT,     class Allocator = std::allocatorCharT class basic_stringstream; (C++11 起) 类模板 std::basic_stringstream 实现基于字符串的流上的输入与输出操作。它等效

    2024年02月10日
    浏览(39)
  • c++11 标准模板(STL)(std::basic_istream)(一)

    template     class CharT,     class Traits = std::char_traitsCharT class basic_istream : virtual public std::basic_iosCharT, Traits 类模板 basic_istream 提供字符流上的高层输入支持。受支持操作包含带格式的输入(例如整数值或空白符分隔的字符与字符串)和无格式输入(例如未处理字符和字符数组)。

    2024年02月13日
    浏览(31)
  • c++11 标准模板(STL)(std::priority_queue)(四)

    template     class T,     class Container = std::vectorT,     class Compare = std::lesstypename Container::value_type class priority_queue; priority_queue 是容器适配器,它提供常数时间的(默认)最大元素查找,对数代价的插入与释出。 可用用户提供的 Compare 更改顺序,例如,用 std::greaterT 将导致最小元

    2024年02月01日
    浏览(45)
  • c++标准模板(STL)(std::array)(三)

    template     class T,     std::size_t N struct array; (C++11 起   std::array 是封装固定大小数组的容器。 此容器是一个聚合类型,其语义等同于保有一个 C 风格数组 T[N] 作为其唯一非静态数据成员的结构体。不同于 C 风格数组,它不会自动退化成 T* 。它能作为聚合类型聚合初始化,只要

    2024年02月02日
    浏览(48)
  • 0829|C++day7 auto、lambda、C++数据类型转换、C++标准模板库(STL)、list、文件操作

        封装一个学生的类,定义一个学生这样类的vector容器, 里面存放学生对象(至少3个) 再把该容器中的对象,保存到文件中。 再把这些学生从文件中读取出来,放入另一个容器中并且遍历输出该容器里的学生。

    2024年02月10日
    浏览(46)
  • 标准模板库STL——迭代器

    目录 四类迭代器概述 代码段 普通正向迭代器 普通反向迭代器 常量正向迭代器 常量反向迭代器 四类迭代器 普通正向迭代器 iterator 常量正向迭代器 const_iterator 普通反向迭代器 reverse_iterator 常量反向迭代器 const_reverse_iterator 解释说明 普通表示可以读元素,也可以写元素; 常量

    2024年02月12日
    浏览(36)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包