unordered_multimap::unordered_multimap
构造容器对象。
unordered_multimap(
const unordered_multimap& right);
explicit unordered_multimap(
size_type nbuckets = N0,
const Hash& hfn = Hash(),
const Pred& comp = Pred(),
const Alloc& al = Alloc());
template<class InIt>
unordered_multimap(
InIt first, InIt last,
size_type nbuckets = N0,
const Hash& hfn = Hash(),
const Pred& comp = Pred(),
const Alloc& al = Alloc());
unordered_multimap(
unordered_muiltimap&& right);
参数
Parameter |
说明 |
InIt |
迭代器类型。 |
al |
对存储的分配器对象。 |
comp |
对存储的比较函数对象。 |
hfn |
对存储的哈希函数对象。 |
nbuckets |
存储桶的最小值。 |
right |
复制的容器。 |
备注
第一个构造函数指定的副本顺序控件由 right。 第二个构造函数指定一个空控件序列。 第三个构造函数插入元素顺序值 [first, last)。 第四个构造函数。移动的 right指定序列的副本。
所有构造函数还初始化若干存储的值。 对于复制构造函数,值从 right获取。 否则:
存储桶的如果有最小值是参数 nbuckets,;否则它是中描述的默认此处,因为该实现中定义的值, N0。
如果有哈希函数对象是参数 hfn,;否则它是 Hash()。
如果有比较函数对象是参数 comp,;否则它是 Pred()。
如果有分配器对象是参数 al,;否则,为 Alloc()。
示例
// std_tr1__unordered_map__unordered_multimap_construct.cpp
// compile with: /EHsc
#include <unordered_map>
#include <iostream>
typedef std::unordered_multimap<char, int> Mymap;
int main()
{
Mymap c1;
c1.insert(Mymap::value_type('a', 1));
c1.insert(Mymap::value_type('b', 2));
c1.insert(Mymap::value_type('c', 3));
// display contents " [c 3] [b 2] [a 1]"
for (Mymap::const_iterator it = c1.begin();
it != c1.end(); ++it)
std::cout << " [" << it->first << ", " << it->second << "]";
std::cout << std::endl;
Mymap c2(8,
std::hash<char>(),
std::equal_to<char>(),
std::allocator<std::pair<const char, int> >());
c2.insert(Mymap::value_type('d', 4));
c2.insert(Mymap::value_type('e', 5));
c2.insert(Mymap::value_type('f', 6));
// display contents " [f 6] [e 5] [d 4]"
for (Mymap::const_iterator it = c2.begin();
it != c2.end(); ++it)
std::cout << " [" << it->first << ", " << it->second << "]";
std::cout << std::endl;
Mymap c3(c1.begin(),
c1.end(),
8,
std::hash<char>(),
std::equal_to<char>(),
std::allocator<std::pair<const char, int> >());
// display contents " [c 3] [b 2] [a 1]"
for (Mymap::const_iterator it = c3.begin();
it != c3.end(); ++it)
std::cout << " [" << it->first << ", " << it->second << "]";
std::cout << std::endl;
Mymap c4(std::move(c3));
// display contents " [c 3] [b 2] [a 1]"
for (Mymap::const_iterator it = c4.begin();
it != c4.end(); ++it)
std::cout << " [" << it->first << ", " << it->second << "]";
std::cout << std::endl;
return (0);
}
要求
**标题:**unordered_map
命名空间: std