gpt4 book ai didi

c++ - 使用 std::uniform_int_distribution 并稍后定义其范围

转载 作者:搜寻专家 更新时间:2023-10-31 00:33:33 28 4
gpt4 key购买 nike

我有问题,我想在结构中创建一个 std::uniform_int_distribution,然后稍后给出它的范围。以下是我想要的。

#include <random>
#include <iostream>

std::random_device rd;
std::mt19937 gen(rd());

struct group_s {
int k;
std::uniform_int_distribution<> dis;
} group;


int main()
{
group.dis(0,19);
std::cout << group.dis(gen) << ' ';
}

我收到以下错误:

no match for call to '(std::uniform_int_distribution<>) (int, int)'
cpu_group.dis(0,19);

我该怎么做?

最佳答案

使用param():

using param_t = std::uniform_int_distribution<>::param_type;

group.dis.param(param_t(0, 19));

如果每次使用分布时参数都改变,那么你也可以考虑使用operator()的双参数重载来代替:

std::cout << group.dis(gen, param_t(0, 19)) << ' ';

由于允许分布对象存储在之前的 operator() 调用期间获得的额外熵位,因此这种方法比构建新的分布对象并分配它更有效。

请注意,cppreference 页面不完整,没有记录标准对 param_type 施加的要求。给定分布类型 D 及其关联的 param_type P

For each of the constructors of D taking arguments corresponding to parameters of the distribution, P shall have a corresponding constructor subject to the same requirements and taking arguments identical in number, type, and default values. Moreover, for each of the member functions of D that return values corresponding to parameters of the distribution, P shall have a corresponding member function with the identical name, type, and semantics.

(§26.5.1.6 [rand.req.dist]/p9)

关于c++ - 使用 std::uniform_int_distribution 并稍后定义其范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28328948/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com