次の方法で共有


unordered_set::end

被制御シーケンスの末尾を指定します。

iterator end();
const_iterator end() const;
local_iterator end(size_type nbucket);
const_local_iterator end(size_type nbucket) const;

パラメーター

パラメーター

Description

nbucket

バケット番号。

解説

最初の 2 つのメンバー関数は、シーケンスの末尾の次の位置を指し示す前方反復子を返します。最後の 2 つのメンバー関数は、バケット nbucket の末尾の次の位置を指し示す前方反復子を返します。

使用例

// std_tr1__unordered_set__unordered_set_end.cpp 
// compile with: /EHsc 
#include <unordered_set> 
#include <iostream> 
 
typedef std::unordered_set<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 last two items " [a] [b]" 
    Myset::iterator it2 = c1.end(); 
    --it2; 
    std::cout << " [" << *it2 << "]"; 
    --it2; 
    std::cout << " [" << *it2 << "]"; 
    std::cout << std::endl; 
 
// inspect bucket containing 'a' 
    Myset::const_local_iterator lit = c1.end(c1.bucket('a')); 
    --lit; 
    std::cout << " [" << *lit << "]"; 
 
    return (0); 
    } 
 
  

必要条件

ヘッダー : <unordered_set>

名前空間: std

参照

関連項目

<unordered_set>

unordered_set クラス

unordered_set::begin

その他の技術情報

<unordered_set> メンバー