Udostępnij za pośrednictwem


operator< (<iterator>)

Testuje, czy obiekt iteratora po lewej stronie operatora jest mniejszy niż obiekt iteratora po prawej stronie.

template<class RandomIterator> 
   bool operator<( 
      const reverse_iterator<RandomIterator>& _Left, 
      const reverse_iterator<RandomIterator>& _Right 
   );

Parametry

  • _Left
    Obiekt typu sterująca.

  • _Right
    Obiekt typu sterująca.

Wartość zwracana

TRUE Jeśli sterująca po lewej stronie wyrażenia jest mniejsza niż sterująca po prawej stronie wyrażenia; false Jeśli jest większa niż lub równa sterująca po prawej stronie.

Uwagi

Jeden obiekt iteratora jest mniejsza niż innego, jeśli dotyczy to element, który nastąpi wcześniej w kontenerze niż element skierowany przez obiekt iteratora.Jeden obiekt iteratora jest nie mniejsza niż innego jeśli dotyczy to tego samego elementu jako inny obiekt sterująca lub element występujący w dalszej części kontenera niż element skierowany przez obiekt iteratora.

Przykład

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

int main( )
{
   using namespace std;
   int i;

   vector<int> vec;
   for ( i = 0 ; i < 6 ; ++i )
   {
      vec.push_back ( 2 * i );
   }
   
   vector <int>::iterator vIter;

   cout << "The initial vector vec is: ( ";
   for ( vIter = vec.begin( ) ; vIter != vec.end( ); vIter++)
      cout << *vIter << " ";
   cout << ")." << endl;

   // Initializing reverse_iterators to the last element
   vector <int>::reverse_iterator rVPOS1 = vec.rbegin ( ), 
           rVPOS2 = vec.rbegin ( );
   
   cout << "The iterators rVPOS1& rVPOS2 initially point to the "
           << "first element\n in the reversed sequence: "
           << *rVPOS1 << "." << endl;

   if ( rVPOS1 < rVPOS2 )
      cout << "The iterator rVPOS1 is less than"
              << " the iterator rVPOS2." << endl;
   else
      cout << "The iterator rVPOS1 is not less than"
              << " the iterator rVPOS2." << endl;

   rVPOS2++;
   cout << "The iterator rVPOS2 now points to the second "
           << "element\n in the reversed sequence: "
           << *rVPOS2 << "." << endl;

   if ( rVPOS1 < rVPOS2 )
      cout << "The iterator rVPOS1 is less than"
              << " the iterator rVPOS2." << endl;
   else
      cout << "The iterator rVPOS1 is not less than"
              << " the iterator rVPOS2." << endl;
}
  

Wymagania

Nagłówek: <iterator>

Przestrzeń nazw: std

Zobacz też

Informacje

Standardowa biblioteka szablonów