다음을 통해 공유


<vector> 연산자

operator!=

연산자의 좌변에 있는 개체가 우변에 있는 개체와 같지 않은지 테스트합니다.

bool operator!=(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

매개 변수

left
vector 형식의 개체입니다.

right
vector 형식의 개체입니다.

Return Value

true 벡터가 같지 않으면 false 벡터가 같으면 입니다.

설명

포함된 요소 수가 같고 개별 요소의 값이 같으면 두 벡터는 같은 것이고 그렇지 않으면 목록은 같지 않은 것입니다.

예시

// vector_op_ne.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   vector <int> v1, v2;
   v1.push_back( 1 );
     v2.push_back( 2 );

   if ( v1 != v2 )
      cout << "Vectors not equal." << endl;
   else
      cout << "Vectors equal." << endl;
}
Vectors not equal.

operator<

연산자의 좌변에 있는 개체가 우변에 있는 개체보다 작은지 테스트합니다.

bool operator<(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

매개 변수

left
vector 형식의 개체입니다.

right
vector 형식의 개체입니다.

Return Value

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 v1 is less than vector v2.

operator<=

연산자의 좌변에 있는 개체가 우변에 있는 개체보다 작거나 같은지 테스트합니다.

bool operator<=(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

매개 변수

left
vector 형식의 개체입니다.

right
vector 형식의 개체입니다.

Return Value

true 연산자의 왼쪽에 있는 벡터가 연산자의 오른쪽에 있는 벡터보다 작거나 같으면 false.

예시

// vector_op_le.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 or equal to vector v2." << endl;
   else
      cout << "Vector v1 is greater than vector v2." << endl;
}
Vector v1 is less than or equal to vector v2.

연산자==

연산자의 좌변에 있는 개체가 우변에 있는 개체와 같은지 테스트합니다.

bool operator==(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

매개 변수

left
vector 형식의 개체입니다.

right
vector 형식의 개체입니다.

Return Value

true 연산자의 왼쪽에 있는 벡터가 연산자의 오른쪽에 있는 벡터와 같으면 false.

설명

포함된 요소 수가 같고 개별 요소의 값이 같으면 두 벡터는 같은 것이고 그렇지 않으면 목록은 같지 않은 것입니다.

예시

// vector_op_eq.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   vector <int> v1, v2;
   v1.push_back( 1 );
   v2.push_back( 1 );

   if ( v1 == v2 )
      cout << "Vectors equal." << endl;
   else
      cout << "Vectors not equal." << endl;
}
Vectors equal.

operator>

연산자의 좌변에 있는 개체가 우변에 있는 개체보다 큰지 테스트합니다.

bool operator>(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

매개 변수

left
vector 형식의 개체입니다.

right
vector 형식의 개체입니다.

Return Value

true 연산자의 왼쪽에 있는 벡터가 연산자의 오른쪽에 있는 벡터보다 크면 false.

예시

// 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 v1 is greater than vector v2.

operator>=

연산자의 좌변에 있는 개체가 우변에 있는 개체보다 크거나 같은지 테스트합니다.

bool operator>=(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

매개 변수

left
vector 형식의 개체입니다.

right
vector 형식의 개체입니다.

Return Value

true 연산자의 왼쪽에 있는 벡터가 벡터의 오른쪽에 있는 벡터보다 크거나 같으면 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;
}
Vector v1 is greater than or equal to vector v2.