Sdílet prostřednictvím


checked_array_iterator::operator==

Dva testy checked_array_iterators pro rovnost.

bool operator==(
   const checked_array_iterator<_Iterator>& _Right
) const;

Parametry

  • _Right
    checked_array_iterator Proti kterému kontrola rovnosti.

Poznámky

Další informace naleznete v tématu Zaškrtnuté iterátory.

Příklad

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

using namespace std;
using namespace stdext;

int main() {
   int a[] = {0, 1, 2, 3, 4};
   int b[5];
   copy(a, a + 5, checked_array_iterator<int*>(b,5));
   copy(a, a + 5, checked_array_iterator<int*>(b,5));

   checked_array_iterator<int*> checked_output_iterator(b,5);
   checked_array_iterator<int*> checked_output_iterator2(b,5);

   if (checked_output_iterator2 == checked_output_iterator)
      cout << "checked_array_iterators are equal" << endl;
   else
      cout << "checked_array_iterators are not equal" << endl;

   copy (a, a + 5, checked_output_iterator);
   checked_output_iterator++;

   if (checked_output_iterator2 == checked_output_iterator)
      cout << "checked_array_iterators are equal" << endl;
   else
      cout << "checked_array_iterators are not equal" << endl;
}
  

Požadavky

Záhlaví: <iterator>

Obor názvů: stdext

Viz také

Referenční dokumentace

checked_array_iterator Class

Standardní šablona knihovny