operator&,|,^(std::bitset)

< cpp‎ | utility‎ | bitset
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
 
(1)
template< std::size_t N >
bitset<N> operator&( const bitset<N>& lhs, const bitset<N>& rhs );
(C++11 前)
template< std::size_t N >
bitset<N> operator&( const bitset<N>& lhs, const bitset<N>& rhs ) noexcept;
(C++11 起)
(2)
template< std::size_t N >
bitset<N> operator|( const bitset<N>& lhs, const bitset<N>& rhs );
(C++11 前)
template< std::size_t N >
bitset<N> operator|( const bitset<N>& lhs, const bitset<N>& rhs ) noexcept;
(C++11 起)
(3)
template< std::size_t N >
bitset<N> operator^( const bitset<N>& lhs, const bitset<N>& rhs );
(C++11 前)
template< std::size_t N >
bitset<N> operator^( const bitset<N>& lhs, const bitset<N>& rhs ) noexcept;
(C++11 起)

进行二个 bitset lhsrhs 间的二进制与、或及异或。

1) 返回含 lhsrhs 的位对应对上的二进制与结果的 bitset<N>
2) 返回含 lhsrhs 的位对应对上的二进制或结果的 bitset<N>
3) 返回含 lhsrhs 的位对应对上的二进制异或结果的 bitset<N>

参数

lhs - 运算符左侧的 bitset
rhs - 运算符右侧的 bitset

返回值

1) bitset<N>(lhs) &= rhs
2) bitset<N>(lhs) |= rhs
3) bitset<N>(lhs) ^= rhs

示例

#include <bitset>
#include <iostream>
 
int main()
{
    std::bitset<4> b1("0110");
    std::bitset<4> b2("0011");
    std::cout << "b1 & b2: " << (b1 & b2) << '\n';
    std::cout << "b1 | b2: " << (b1 | b2) << '\n';
    std::cout << "b1 ^ b2: " << (b1 ^ b2) << '\n';
}

输出:

b1 & b2: 0010
b1 | b2: 0111
b1 ^ b2: 0101

参阅

进行二进制与、或、异或及非
(公开成员函数)