unordered_multiset::unordered_multiset

构造容器对象。

unordered_multiset(
    const unordered_multiset& right);
explicit unordered_multiset(
    size_type nbuckets = N0,
    const Hash& hfn = Hash(),
    const Pred& comp = Pred(),
    const Alloc& al = Alloc());
template<class InIt>
    unordered_multiset(
    InIt first, InIt last,
    size_type nbuckets = N0,
    const Hash& hfn = Hash(),
    const Pred& comp = Pred(),
    const Alloc& al = Alloc());
unordered_multiset(
    unordered_multiset&& right);

参数

Parameter

说明

InIt

迭代器类型。

al

对存储的分配器对象。

comp

对存储的比较函数对象。

hfn

对存储的哈希函数对象。

nbuckets

存储桶的最小值。

right

复制的容器。

备注

第一个构造函数指定的副本顺序控件由 right。 第二个构造函数指定一个空控件序列。 第三个构造函数插入元素顺序值 [first, last)。第四个构造函数。移动的 right指定序列的副本。

所有构造函数还初始化若干存储的值。 对于复制构造函数,值从 right获取。 否则:

存储桶的如果有最小值是参数 nbuckets,;否则它是中描述的默认此处,因为该实现中定义的值, N0。

如果有哈希函数对象是参数 hfn,;否则它是 Hash()。

如果有比较函数对象是参数 comp,;否则它是 Pred()。

如果有分配器对象是参数 al,;否则,为 Alloc()。

示例 

Bb982148.collapse_all(zh-cn,VS.110).gif代码

// std_tr1__unordered_set__unordered_multiset_construct.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.begin(); 
        it != c1.end(); ++it) 
        std::cout << " [" << *it << "]"; 
    std::cout << std::endl; 
 
    Myset c2(8, 
        std::hash<char>(), 
        std::equal_to<char>(), 
        std::allocator<std::pair<const char, int> >()); 
 
    c2.insert('d'); 
    c2.insert('e'); 
    c2.insert('f'); 
 
// display contents " [f] [e] [d]" 
    for (Myset::const_iterator it = c2.begin(); 
        it != c2.end(); ++it) 
        std::cout << " [" << *it << "]"; 
    std::cout << std::endl; 
 
    Myset c3(c1.begin(), 
        c1.end(), 
        8, 
        std::hash<char>(), 
        std::equal_to<char>(), 
        std::allocator<std::pair<const char, int> >()); 
 
// display contents " [c] [b] [a]" 
    for (Myset::const_iterator it = c3.begin(); 
        it != c3.end(); ++it) 
        std::cout << " [" << *it << "]"; 
    std::cout << std::endl; 
 
    Myset c4(std::move(c3));

// display contents " [c] [b] [a]" 
    for (Myset::const_iterator it = c3.begin(); 
        it != c3.end(); ++it) 
        std::cout << " [" << *it << "]"; 
    std::cout << std::endl; 

    return (0); 
    } 
 

Bb982148.collapse_all(zh-cn,VS.110).gifOutput

 [c] [b] [a]
 [f] [e] [d]
 [c] [b] [a]
 [c] [b] [a]

要求

**标题:**unordered_set

命名空间: std

请参见

参考

<unordered_set>

unordered_multiset Class

其他资源

unordered_set 成员