Udostępnij za pośrednictwem


make_checked_array_iterator

Tworzy checked_array_iterator, którego mogą używać inne algorytmy.

[!UWAGA]

Ta funkcja jest rozszerzeniem Microsoft standardowej biblioteki języka C++.Kod zaimplementowany przy użyciu tej funkcji nie jest przenośny do standardowych środowisk kompilacji C++, które nie obsługują tego rozszerzenia Microsoft.

template <class Iter>
  checked_array_iterator<Iter> 
    make_checked_array_iterator(
      Iter Ptr,
      size_t Size,
      size_t Index = 0
);

Parametry

  • Ptr
    Wskaźnik do tablicy docelowej.

  • Size
    Rozmiar tablicy docelowej.

  • Index
    Opcjonalny indeks do tablicy.

Wartość zwracana

Wystąpienie checked_array_iterator.

Uwagi

Funkcja make_checked_array_iterator jest zdefiniowana w przestrzeni nazw stdext.

Ta funkcja pobiera wskaźnik surowy — co spowodowałoby zwykle problemy z przekroczeniem granic — i otacza go w klasę checked_array_iterator, która wykonuje sprawdzanie.Ponieważ ta klasa jest oznaczona jako sprawdzana, STL nie ostrzega o tym.Aby uzyskać więcej informacji i przykładów kodu, zobacz Zaznaczone iteratory.

Przykład

W poniższym przykładzie jest tworzony wektor, który jest wypełniany 10 sztukami.Zawartość wektora jest kopiowana do tablicy przy użyciu algorytmu kopiowania, a następnie make_checked_array_iterator jest używany do określenia miejsca docelowego.Następnie ma miejsce sprawdzenie celowego naruszenia granic, aby wywołać błąd asercji debugowania.

// make_checked_array_iterator.cpp
// compile with: /EHsc /W4 /MTd

#include <algorithm>
#include <iterator> // stdext::make_checked_array_iterator
#include <memory> // std::make_unique
#include <iostream>
#include <vector>
#include <string>

using namespace std;

template <typename C> void print(const string& s, const C& c) {
    cout << s;

    for (const auto& e : c) {
        cout << e << " ";
    }

    cout << endl;
}

int main()
{
    const size_t dest_size = 10;
    // Old-school but not exception safe, favor make_unique<int[]>
    // int* dest = new int[dest_size];
    unique_ptr<int[]> updest = make_unique<int[]>(dest_size);
    int* dest = updest.get(); // get a raw pointer for the demo

    vector<int> v;

    for (int i = 0; i < dest_size; ++i) {
        v.push_back(i);
    }
    print("vector v: ", v);

    copy(v.begin(), v.end(), stdext::make_checked_array_iterator(dest, dest_size));

    cout << "int array dest: ";
    for (int i = 0; i < dest_size; ++i) {
        cout << dest[i] << " ";
    }
    cout << endl;

    // Add another element to the vector to force an overrun.
    v.push_back(10);
    // The next line causes a debug assertion when it executes.
    copy(v.begin(), v.end(), stdext::make_checked_array_iterator(dest, dest_size));
}

Dane wyjściowe

vector v: 0 1 2 3 4 5 6 7 8 9
int array dest: 0 1 2 3 4 5 6 7 8 9

Wymagania

Nagłówek: <iterator>

Przestrzeń nazw: stdext

Zobacz też

Informacje

Standardowa biblioteka szablonów