unordered_multiset::const_local_iterator
常數 Bucket Iterator 的型別受控制序列的。
typedef T5 const_local_iterator;
備註
型別描述可以當做常數順向 Iterator 當做雜湊桶的物件。它會說明此例中,實作所定義之型別的 T5一個同義資料表。
範例
// std_tr1__unordered_set__unordered_multiset_const_local_iterator.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.begin();
it != c1.end(); ++it)
std::cout << " [" << *it << "]";
std::cout << std::endl;
// inspect bucket containing 'a'
Myset::const_local_iterator lit = c1.begin(c1.bucket('a'));
std::cout << " [" << *lit << "]";
return (0);
}
需求
標題: <unordered_set>
命名空間: std