共用方式為


<bitset> 運算子

operator&

在兩個 bitset 之間執行位元 AND

template <size_t size>
bitset<size>
operator&(
    const bitset<size>& left,
    const bitset<size>& right);

參數

left
兩個 bitset 的第一個 bitset,其相關元素會使用位元 AND 結合。

right
兩個 valarray 的第二個 valarray,其相關元素會使用位元 AND 結合。

傳回值

位集,其專案是在左右對應元素上執行AND作業的結果。

範例

// bitset_and.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
#include <string>

using namespace std;

int main()
{
   bitset<4> b1 ( string("0101") );
   bitset<4> b2 ( string("0011") );
   bitset<4> b3 = b1 & b2;
   cout << "bitset 1: " << b1 << endl;
   cout << "bitset 2: " << b2 << endl;
   cout << "bitset 3: " << b3 << endl;
}
bitset 1: 0101
bitset 2: 0011
bitset 3: 0001

operator<<

將位元序列的文字表示插入輸出資料流。

template <class CharType, class Traits, size_t N>
basic_ostream<CharType, Traits>& operator<<(
    basic_ostream<CharType, Traits>& ostr,
    const bitset<N>& right);

參數

right
要插入輸出數據流做為字串之 bitset<N> 類型的物件。

傳回值

中位序列的 ostr文字表示。

備註

樣板函式多 operator<<載 ,可讓bitset寫出,而不需要先將它轉換成字串。 樣板函式有效地執行:

ostr << right.to_string<CharType, Traits, allocator<CharType>>()

範例

// bitset_op_insert.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
#include <string>

int main( )
{
   using namespace std;

   bitset<5> b1 ( 9 );

   // bitset inserted into output stream directly
   cout << "The ordered set of bits in the bitset<5> b1(9)"
        << "\n can be output with the overloaded << as: ( "
        << b1 << " )" << endl;

   // Compare converting bitset to a string before
   // inserting it into the output stream
   string s1;
   s1 =  b1.template to_string<char,
      char_traits<char>, allocator<char> >( );
   cout << "The string returned from the bitset b1"
        << "\n by the member function to_string( ) is: "
        << s1 << "." << endl;
}

operator>>

將位元字元的字串讀入 bitset。

template <class CharType, class Traits, size_t Bits>
basic_istream<CharType, Traits>& operator>> (
    basic_istream<CharType, Traits>& i_str,
    bitset<N>& right);

參數

i_str
在輸入資料流中輸入以插入 bitset 的字串。

right
要從輸入資料流接收位元的 bitset。

傳回值

範本函式會傳回字串i_str。

備註

樣板函式會多載operator>>,以將值bitset(str)儲存在 bitset 中,其中 str 是從 i_str< CharType, Traits, allocator< CharType > >& 擷取basic_string類型的物件。

範本函式會從i_str取元素,並將其插入 bitset,直到:

  • 已從輸入資料流中擷取所有位元元素並將其儲存在 bitset 中。

  • 已使用輸入資料流中的位元填滿 bitset。

  • 遇到不是 0 或 1 的輸入元素。

範例

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

using namespace std;
int main()
{
   bitset<5> b1;
   cout << "Enter string of (0 or 1) bits for input into bitset<5>.\n"
        << "Try bit string of length less than or equal to 5,\n"
        << " (for example: 10110): ";
   cin >>  b1;

   cout << "The ordered set of bits entered from the "
        << "keyboard\n has been input into bitset<5> b1 as: ( "
        << b1 << " )" << endl;

   // Truncation due to longer string of bits than length of bitset
   bitset<2> b3;
   cout << "Enter string of bits (0 or 1) for input into bitset<2>.\n"
        << " Try bit string of length greater than 2,\n"
        << " (for example: 1011): ";
   cin >>  b3;

   cout << "The ordered set of bits entered from the "
        << "keyboard\n has been input into bitset<2> b3 as: ( "
        << b3 << " )" << endl;

   // Flushing the input stream
   char buf[100];
   cin.getline(&buf[0], 99);

   // Truncation with non-bit value
   bitset<5> b2;
   cout << "Enter a string for input into  bitset<5>.\n"
        << " that contains a character than is NOT a 0 or a 1,\n "
        << " (for example: 10k01): ";
   cin >>  b2;

   cout << "The string entered from the keyboard\n"
        << " has been input into bitset<5> b2 as: ( "
        << b2 << " )" << endl;
}

operator^

在兩個 bitset 之間執行位元 EXCLUSIVE-OR

template <size_t size>
bitset<size>
operator^(
    const bitset<size>& left,
    const bitset<size>& right);

參數

left
兩個 bitset 的第一個 bitset,其相關元素會使用位元 EXCLUSIVE-OR 結合。

right
兩個 valarray 的第二個 valarray,其相關元素會使用位元 EXCLUSIVE-OR 結合。

傳回值

位集,其專案是在左右對應元素上執行EXCLUSIVE-OR作業的結果。

範例

// bitset_xor.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
#include <string>

using namespace std;

int main()
{
   bitset<4> b1 ( string("0101") );
   bitset<4> b2 ( string("0011") );
   bitset<4> b3 = b1 ^ b2;
   cout << "bitset 1: " << b1 << endl;
   cout << "bitset 2: " << b2 << endl;
   cout << "bitset 3: " << b3 << endl;
}
bitset 1: 0101
bitset 2: 0011
bitset 3: 0110

operator|

在兩 bitset 個 對象之間執行位 OR。

template <size_t size>
bitset<size>
operator|(
    const bitset<size>& left,
    const bitset<size>& right);

參數

left
兩個 bitset 的第一個 bitset,其相關元素會使用位元 OR 結合。

right
兩個 valarray 的第二個 valarray,其相關元素會使用位元 OR 結合。

傳回值

位集,其專案是在左右對應元素上執行OR作業的結果。

範例

// bitset_or.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
#include <string>

using namespace std;

int main()
{
   bitset<4> b1 ( string("0101") );
   bitset<4> b2 ( string("0011") );
   bitset<4> b3 = b1 | b2;
   cout << "bitset 1: " << b1 << endl;
   cout << "bitset 2: " << b2 << endl;
   cout << "bitset 3: " << b3 << endl;
}
bitset 1: 0101
bitset 2: 0011
bitset 3: 0111