hash_multimap::const_iterator
注意事項 |
---|
這個 API 已經過時。替代案例是 unordered_multimap 類別。 |
提供雙向 Iterator 可讀取 hash_multimap 的一個 const 元素的型別。
typedef list<typename Traits::value_type, typename Traits::allocator_type>::const_iterator const_iterator;
備註
const_iterator 型別無法用來修改項目的值。
in value_type物件的 hash_multimap 點定義的 const_iterator ,是 pair*<const Key, Type>。* 索引鍵的值到第一個成員為可用的,因此,這個對應之項目的值傳遞給第二個成員是可用的。
若要解除參考 const_iterator 指向在 hash_multimap 的項目的cIter ,請使用 -> 運算子。
存取索引鍵值項目、使用 cIter ->first的,相當於cIter(*)。first。 存取對應的資料值項目、使用 cIter ->second的,相當於cIter(*)。first。
在 Visual C++ .NET 2003 中, <hash_map> 和 <hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
使用 const_iterator,中的參閱 啟動 範例。
需求
標頭檔: <hash_map>
**命名空間:**stdext