operator>=(<vector>)
Tests if the object on the left side of the operator is greater than or equal to the object on the right side.
bool operator>=(
const vector<Type, Allocator>& _Left,
const vector<Type, Allocator>& _Right
);
매개 변수
_Left
An object of type vector._Right
An object of type vector.
반환 값
true if the vector on the left side of the operator is greater than or equal to the vector on the right side of the vector; otherwise false.
예제
// vector_op_ge.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1, v2;
v1.push_back( 1 );
v1.push_back( 3 );
v1.push_back( 1 );
v2.push_back( 1 );
v2.push_back( 2 );
v2.push_back( 2 );
if ( v1 >= v2 )
cout << "Vector v1 is greater than or equal to vector v2." << endl;
else
cout << "Vector v1 is less than vector v2." << endl;
}
요구 사항
헤더: <벡터>
네임스페이스: std