hash_map::const_reverse_iterator
注意事項 |
---|
這個 API 已經過時。替代方案是 unordered_map 類別。 |
提供雙向 Iterator 可讀取 hash_map const 的所有項目的型別。
typedef list<typename Traits::value_type, typename Traits::allocator_type>::const_reverse)iterator const_reverse_iterator;
備註
const_reverse_iterator 型別的反向無法修改項目的值是使用透過 hash_map 逐一查看。
是 value_type物件項目的 hash_map 點定義的 const_reverse_iterator ,則為型別 pair<const Key, Type>,第一個成員是索引鍵的項目,第二個成員是這個項目保有的對應資料。
若要解除參考 const_reverse_iterator 指向 hash_map 的項目的crIter ,請使用 -> 運算子。
存取索引鍵值項目、使用 crIter ->first的,與 (*).firstcrIter相等。 存取對應的資料值項目、使用 crIter ->second的,相當於crIter(*)。first。
在 Visual C++ .NET 2003 中, <hash_map> 和 <hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
中的 盡可能 參閱本範例說明如何宣告和使用 const_reverse_iterator。
需求
標頭檔: <hash_map>
**命名空間:**stdext