次の方法で共有


vector<bool>::reference::flip

ベクターの要素のブール値を反転させます。

void flip( );

解説

参照の operator~ は、ベクターの要素のブール値を反転させます。

使用例

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

class MyAlloc{};
int main( ) 
{
   using namespace std;
   typedef vector<bool> boolvector;
   boolvector v;

   v.push_back( false );
   boolvector::reference ref1 = v.at( 0 );

   cout << "The original value of the 1st element is: " << bool( ref1 ) << endl;
   ref1.flip( );
   cout << "The value of the 1st element is now: " << ref1 << endl;
}
  

必要条件

ヘッダー: <vector>

名前空間: std

参照

関連項目

vector<bool>::reference Class

標準テンプレート ライブラリ