共用方式為


concurrent_unordered_multiset::concurrent_unordered_multiset 建構函式

建構並行不按順序的多重集。

explicit concurrent_unordered_multiset(
   size_type _Number_of_buckets = 8,
   const hasher& _Hasher = hasher(),
   const key_equal& _Key_equality = key_equal(),
   const allocator_type& _Allocator = allocator_type()
);

concurrent_unordered_multiset(
   const allocator_type& _Allocator
);

template <
   typename _Iterator
>
concurrent_unordered_multiset(
   _Iterator_First,
   _Iterator_Last,
   size_type _Number_of_buckets = 8,
   const hasher& _Hasher = hasher(),
   const key_equal& _Key_equality = key_equal(),
   const allocator_type& _Allocator = allocator_type()
);

concurrent_unordered_multiset(
   const concurrent_unordered_multiset& _Uset
);

concurrent_unordered_multiset(
   const concurrent_unordered_multiset& _Uset,
   const allocator_type& _Allocator
);

concurrent_unordered_multiset(
   concurrent_unordered_multiset&& _Uset
);

參數

  • _Iterator
    輸入 Iterator 類型。

  • _Number_of_buckets
    雜湊桶這個不按順序的多重集的初始數目。

  • _Hasher
    此未排序的多重集雜湊函式。

  • _Key_equality
    此未排序的多重集相等比較函式。

  • _Allocator
    此未排序的多重集的配置器。

  • _First

  • _Last

  • _Uset
    來源concurrent_unordered_multiset物件,若要移動的項目。

備註

將所有建構函式配置物件儲存_Allocator ,並將初始化未排序的多重集。

第一個建構函式指定空的初始多重集,並明確指定的雜湊桶,雜湊函式、 等號比較函式和配置器型別使用。

第二個建構函式會指定配置器未排序的多重集。

第三個建構函式會指定 Iterator 範圍 [_Begin, _End) 提供的值。

第四和第五個建構函式指定並行的未排序多重集的一份_Uset。

最後一個建構函式會指定以移動,同時不按順序的多重集的_Uset。

需求

標頭: concurrent_unordered_set.h

Namespace: 並行存取

請參閱

參考

concurrent_unordered_multiset 類別