다음을 통해 공유


bitset::set

모든 비트는 bitset 집합 또는 1 비트 1로 지정 된 위치 설정입니다.

bitset<N>& set( );
bitset<N>& set(
   size_t _Pos, 
   bool _Val = true
);

매개 변수

  • _Pos
    Bitset 설정할 비트의 위치에 값을 할당 합니다.

  • _Val
    지정한 위치에 있는 비트에 할당 될 값입니다.

반환 값

멤버 함수를 호출한 bitset의 복사본입니다.

설명

두 번째 멤버 함수를 throw는 out_of_range 지정한 위치 bitset 크기 보다 클 경우는 예외입니다.

예제

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 6 );
   cout << "The set of bits in bitset<5> b1(6) is: ( "<< b1 << " )"
        << endl;

   bitset<5> b1s0;
   b1s0 = b1.set( 0 );
   cout << "The collecion of bits obtained from setting the\n"
        << " zeroth bit of bitset b1 is: ( "<< b1s0 << " )" 
        << endl;

   bitset<5> bs1;
   bs1 = b1.set( );
   cout << "The collecion of bits obtained from setting all the\n"
        << " elements of the bitset b1 is: ( "<< bs1 << " )"
        << endl;
}
  

요구 사항

헤더: <bitset>

네임 스페이스: std

참고 항목

참조

bitset Class