unordered_multiset::cbegin
Wyznacza początek kontrolowanych sekwencji lub Wiadro z farbą.
const_iterator cbegin() const;
Uwagi
Zwraca wartość funkcji Członkowskich const przesyła iteratora tego punkty na pierwszy element sekwencji (lub po prostu poza koniec sekwencji puste).
Przykład
Kod
// 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;
}
Dane wyjściowe
[c] [b] [a]
[c] [b]
Wymagania
Nagłówek: <unordered_set>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<unordered_set> Członkowie