Condividi tramite


vector<bool>::reference::flip

Inverte il valore booleano di un vector<bool> a cui viene fatto riferimento.

void flip();

Esempio

// 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;
}

Output

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

Requisiti

Intestazione: <vector>

Spazio dei nomi: std

Vedere anche

Riferimenti

vector<bool>::reference Class

Libreria di modelli standard