Sdílet prostřednictvím


array::cbegin

Const iterační random access vrátí na první prvek v kontejneru.

const_iterator cbegin() const;

Vrácená hodnota

Const iterační random access adresování první prvek array Class (TR1) nebo umístění následných prázdné array.Vždy, porovnejte hodnoty vrácené s array::cend nebo array::end je platný.

Poznámky

Vrátí hodnotu, která se array::cbegin, array objekt nelze upravit.

Příklad

// array_cbegin.cpp
// compile with: /EHsc
#include <array>
#include <iostream>

int main()
{
    using namespace std;
    array<int, 2> c1 = {1, 2};
    array<int, 2>::const_iterator c1_Iter;

    cout << "The array c1 contains elements:";
    c1_Iter = c1.cbegin();
    for (; c1_Iter != c1.cend(); c1_Iter++)
    {
        cout << " " << *c1_Iter;
    }
    cout << endl;

    // The following line would be an error because iterator is const
    // *c1.cbegin() = 200;
}
  

Požadavky

Záhlaví: <array>

Obor názvů: std

Viz také

Referenční dokumentace

<array>

array Class (TR1)

Standardní šablona knihovny