共用方式為


concurrent_unordered_set::concurrent_unordered_set 建構函式

建構並行未排序集合。

explicit concurrent_unordered_set(
   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_set(
   const allocator_type& _Allocator
);

template <
   typename _Iterator
>
concurrent_unordered_set(
   _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_set(
   const concurrent_unordered_set& _Uset
);

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

concurrent_unordered_set(
   concurrent_unordered_set&& _Uset
);

參數

  • _Iterator
    輸入迭代器的類型。

  • _Number_of_buckets
    未排序集合 Bucket 的初始數量。

  • _Hasher
    這個未排序的多重集的雜湊集合。

  • _Key_equality
    這個未排序集合的相等比較函式。

  • _Allocator
    這個未排序集合的配置器。

  • _First

  • _Last

  • _Uset
    要從中複製或移動項目的來源 concurrent_unordered_set 物件。

備註

所有的建構函式都會存放配置器物件 _Allocator 並初始化未排序的集合。

第一個建構函式指定空的初始集合和明確指定雜湊桶、函式、要使用的相等函式和配置器類型數目。

第二個建構函式為未排序的集合指定配置器。

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

第四和第五建構函式指定同時未排序集合 _Uset的複本。

最後建構函式指定同時未排序集合 _Uset的移動。

需求

**標頭:**concurrent_unordered_set.h

**命名空間:**concurrency

請參閱

參考

concurrent_unordered_set 類別