Udostępnij za pośrednictwem


vector::begin

Zwraca sterująca losowe dostęp do pierwszym elementem w zakresie ataku.

const_iterator begin() const; iterator begin();

Wartość zwracana

Sterująca losowe dostępu, wskazujące na pierwszym elementem lub lokalizację sukcesy pustą vector.Zawsze należy porównać wartość zwracana z vector::end do zapewnienia jest nieprawidłowa.

Uwagi

Jeśli wartość zwracaną begin jest przypisana do vector::const_iterator, vector nie można zmodyfikować obiektu.Jeśli wartość zwracaną begin jest przypisana do vector::iterator, vector obiektu mogą być modyfikowane.

Przykład

// vector_begin.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
using namespace std;
int main()
{
    vector<int> vec;
    vector<int>::iterator pos;
    vector<int>::const_iterator cpos;

    vec.push_back(1);
    vec.push_back(2);

    cout << "The vector vec contains elements:";
    for (pos = vec.begin(); pos != vec.end(); ++pos)
    {
        cout << " " << *pos;
    }

    cout << endl;

    cout << "The vector vec now contains elements:";
    pos = vec.begin();
    *pos = 20;
    for (; pos != vec.end(); ++pos)
    {
        cout << " " << *pos;
    }
    cout << endl;

    // The following line would be an error because iterator is const
    // *cpos = 200;}
  

Wymagania

Nagłówek: < wektora >

Przestrzeń nazw: std

Zobacz też

Informacje

vector — Klasa

Standardowa biblioteka szablonów