Partager via


vector<bool>::reference::flip

Inverse la valeur booléenne d'un élément vector<bool> référencé.

void flip();

Exemple

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

int main()
{
    using namespace std;
    cout << boolalpha;

    vector<bool> vb = { true, false, false, true, true };

    cout << "The vector is: " << endl << "    ";
    for (const auto& b : vb) {
        cout << b << " ";
    }
    cout << endl;

    vector<bool>::reference vbref = vb.front();
    vbref.flip();

    cout << "The vector with first element flipped is: " << endl << "    ";
    for (const auto& b : vb) {
        cout << b << " ";
    }
    cout << endl;
}

Sortie

The vector is:
    true false false true true
The vector with first element flipped is:
    false false false true true

Configuration requise

En-tête : <vector>

Espace de noms : std

Voir aussi

Référence

vector<bool>::reference, classe

Bibliothèque STL (Standard Template Library)