Sdílet prostřednictvím


unordered_multiset::cbegin

Označí začátek řízené sekvence nebo bloku.

const_iterator cbegin() const;

Poznámky

Funkce vrací člen const dál iterační že bodů na první prvek sekvence (nebo pouze za konec prázdné sekvence).

Příklad 

Dd998268.collapse_all(cs-cz,VS.110).gifKód

// std_tr1__unordered_multiset__unordered_multiset_cbegin.cpp 
// compile with: /EHsc 
#include <unordered_set> 
#include <iostream> 
 
typedef std::unordered_multiset<char> Myset; 
int main() 
    { 
    Myset c1; 
 
    c1.insert('a'); 
    c1.insert('b'); 
    c1.insert('c'); 
 
// display contents " [c] [b] [a]" 
    for (Myset::const_iterator it = c1.cbegin(); 
        it != c1.end(); ++it) 
        std::cout << " [" << *it << "]"; 
    std::cout << std::endl; 
 
// inspect first two items " [c] [b]" 
    Myset::const_iterator it2 = c1.cbegin(); 
    std::cout << " [" << *it2 << "]"; 
    ++it2; 
    std::cout << " [" << *it2 << "]"; 
    std::cout << std::endl; 
    } 
 

Dd998268.collapse_all(cs-cz,VS.110).gifVýsledek

 [c] [b] [a]
 [c] [b]

Požadavky

Záhlaví: <unordered_set>

Obor názvů: std

Viz také

Referenční dokumentace

<unordered_set>

unordered_multiset Class

unordered_multiset::end

Další zdroje

<unordered_set> Členové