다음을 통해 공유


operator<< (<bitset>)

비트 시퀀스의 텍스트 표현을 출력 스트림에 삽입 됩니다.

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.

설명

함수 템플릿의 오버 로드 **운영자 <<**는 bitset 문자열로 변환 하지 않고 작성 될 수 있도록 합니다.템플릿 함수를 효과적으로 실행합니다.

ostr << _Right. to_string <CharType, 특성, 할당자<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 steam
   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;
}

Output

The ordered set of bits in the bitset<5> b1(9)
 can be output with the overloaded << as: ( 01001 )
The string returned from the bitset b1
 by the member function to_string( ) is: 01001.

요구 사항

헤더: <bitset>

네임 스페이스: std