共用方式為


vector<bool>::reference::flip

反轉所參考 vector<bool> 項目的布林值。

void flip();

範例

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

需求

標頭:<vector>

命名空間: std

請參閱

參考

vector<bool>::reference 類別

標準樣板程式庫