다음을 통해 공유


checked_array_iterator::operator==

checked_array_iterator가 같은지 테스트합니다.

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

매개 변수

  • _Right
    The checked_array_iterator against which to check for equality.

설명

자세한 내용은 Checked Iterators을 참조하십시오.

예제

// 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;
}
  

요구 사항

헤더: <iterator>

네임스페이스: stdext

참고 항목

참조

checked_array_iterator 클래스

표준 템플릿 라이브러리