vector<bool>::reference::operator bool
ベクターの<bool>の ::reference の変数をキャストします。
operator bool( ) const;
戻り値
ベクターの要素のブール値。
解説
ベクターのオブジェクトが、この演算子で変更することはできません。
使用例
// vector_bool_ref_opbool.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
typedef vector<bool> boolvector;
boolvector v;
v.push_back( false );
boolvector::reference ref1 = v.at( 0 );
cout << ref1 << endl; // ref1 implicitly cast to bool
bool b1;
// One form of an explicit cast
b1 = ref1.operator bool( );
cout << b1 << endl;
// Another form of an explicit cast
b1 = bool( ref1 );
cout << b1 << endl;
}
必要条件
ヘッダー: <vector>
名前空間: std