Sdílet prostřednictvím


array::crbegin

Const iterační vrátí na první prvek v poli Stornovaná.

const_reverse_iterator crbegin( ) const;

Vrácená hodnota

Const zpětně random access iterační adresování první prvek v poli Stornovaná nebo adresování, co byl poslední prvek v poli unreversed.

Poznámky

Vrátí hodnotu, která se crbegin, nelze změnit objekt array.

Příklad

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

int main( )
{
   using namespace std;   
   array<int, 2> v1 = {1, 2};
   array<int, 2>::iterator v1_Iter;
   array<int, 2>::const_reverse_iterator v1_rIter;
   
   v1_Iter = v1.begin( );
   cout << "The first element of array is "
        << *v1_Iter << "." << endl;

   v1_rIter = v1.crbegin( );
   cout << "The first element of the reversed array is "
        << *v1_rIter << "." << endl;
}
  
  

Požadavky

Záhlaví: <array>

Obor názvů: std

Viz také

Referenční dokumentace

<array>

array Class (TR1)

Standardní šablona knihovny