operator> (<vector>)
테스트 개체 연산자의 왼쪽에서 오른쪽에 있는 개체 보다 큰 경우.
bool operator>(
const vector<Type, Allocator>& _Left,
const vector<Type, Allocator>& _Right
);
매개 변수
_Left
개체 형식의 벡터._Right
개체 형식의 벡터.
반환 값
true 이면 연산자의 왼쪽에 있는 벡터 벡터; 연산자의 오른쪽에 보다 큰 경우 그렇지 않으면 거짓.
예제
// vector_op_gt.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 vector v2." << endl;
else
cout << "Vector v1 is not greater than vector v2." << endl;
}
요구 사항
헤더: <vector>
네임 스페이스: std