次の方法で共有


unordered_multiset::cbegin

被制御シーケンスまたはバケットの先頭を指定します。

const_iterator cbegin() const;

解説

このメンバー関数は、シーケンスの最初の要素 (または空のシーケンスの末尾の次の位置) を指し示す定数前方反復子を返します。

例 

Dd998268.collapse_all(ja-jp,VS.110).gifコード

// 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(ja-jp,VS.110).gif出力

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

必要条件

ヘッダー : <unordered_set>

名前空間: std

参照

関連項目

<unordered_set>

unordered_multiset クラス

unordered_multiset::end

その他の技術情報

<unordered_set> メンバー