concurrent_unordered_set::rehash Method

重新生成哈希表。

void rehash(
   size_type _Buckets
);

参数

  • _Buckets
    存储桶个数。

备注

成员函数修改存储桶数至少 _Buckets 并重新生成哈希表根据需要。 存储桶数必须是 2 的次幂。 如果没有幂为 2,因此它将不会被舍入到下一个更大功率的 2。

out_of_range 引发异常,如果存储桶数无效 (0 或者大于存储桶的最大数目)。

要求

**标头:**internal_concurrent_hash.h

**命名空间:**并发

请参见

参考

concurrent_unordered_set 类