operator< (<vector>)
演算子の左側のオブジェクトが右側のオブジェクトより小さいかどうかを調べます。
bool operator<(
const vector<Type, Allocator>& _Left,
const vector<Type, Allocator>& _Right
);
パラメーター
_Left
**[ベクタ]**型のオブジェクト。_Right
**[ベクタ]**型のオブジェクト。
戻り値
演算子の左側のベクターである場合、演算子の右側のベクターより小さいtrue ; それ false。
使用例
// vector_op_lt.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1, v2;
v1.push_back( 1 );
v1.push_back( 2 );
v1.push_back( 4 );
v2.push_back( 1 );
v2.push_back( 3 );
if ( v1 < v2 )
cout << "Vector v1 is less than vector v2." << endl;
else
cout << "Vector v1 is not less than vector v2." << endl;
}
必要条件
ヘッダー: <vector>
名前空間: std