다음을 통해 공유


bitset::to_string

Bitset 개체를 문자열 표현으로 변환합니다.

template<class CharType, class Traits, class Alloc>
   basic_string<CharType, Traits, Alloc> to_string ( ) const;

반환 값

이 비트가 설정 되어 있지 않은 경우 string 개체의 각 집합 bitset에 비트가 클래스 basic_string에서 해당 문자를 1과 0 문자 있습니다.

예제

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 7 );

   cout << "The ordered set of bits in the bitset<5> b1( 7 )"
        << "\n that was generated by the number 7 is: ( "
        << b1 << " )" << endl;

   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;
}
  

요구 사항

헤더: <bitset>

네임 스페이스: std

참고 항목

참조

bitset Class