vector<bool>::reference::flip
Invertuje booleovskou hodnotu elementu vector.
void flip( );
Poznámky
Odkazovací operátor ~ také Invertuje booleovskou hodnotu elementu vector.
Příklad
// 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;
}
Požadavky
Záhlaví: <vector>
Obor názvů: std