다음을 통해 공유


벡터 <bool>:: reference::operator =

부울 값은 약간 약간 참조 된 요소에 의해 저장 된 값을 할당 합니다.

reference& operator=(
   const reference& _Right
);
reference& operator=(
   bool _Val
);

매개 변수

  • _Right
    요소 참조 값의 비트를 할당 하는.

  • _Val
    비트에 할당 될 부울 값입니다.

반환 값

지정 하거나 참조 하는 부울 값입니다.

예제

// vector_bool_ref_op_assign.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

class MyAlloc{};
int main( ) 
{
   using namespace std;

   typedef vector<bool> boolvector;
   boolvector v;
   bool b1, b2;

   v.push_back( false );
   v.push_back( true );
   boolvector::reference ref1 = v.at( 0 );
   boolvector::reference ref2 = v.at( 1 );
   b1 = ref1;
   b2 = ref2;
   cout << "The initial value of the 1st element was: " << b1 << endl;
   cout << "The initial value of the 2nd element was: " << b2 << endl;

   ref2.operator=( ref1 );
   b2 = ref2;
   cout << "The value of the 2nd element is now: " << b2 << endl;

   ref1.operator=( true );
   b1 = bool( ref1 );
   cout << "The value of the 1st element is now: " << b1 << endl;
}
  

요구 사항

헤더: <vector>

네임 스페이스: std

참고 항목

참조

vector<bool>::reference Class

표준 템플릿 라이브러리