生成随机枚举

发布于 2024-09-04 23:17:01 字数 169 浏览 3 评论 0原文

如何在 C++ 中随机选择枚举类型的值? 我想做这样的事情。

enum my_type(A,B,C,D,E,F,G,h,J,V);
my_type test(rand() % 10);

但这是非法的......没有从 int 到 enum 类型的隐式转换。

How do I randomly select a value for an enum type in C++?
I would like to do something like this.

enum my_type(A,B,C,D,E,F,G,h,J,V);
my_type test(rand() % 10);

But this is illegal... there is not an implicit conversion from int to an enum type.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风苍溪 2024-09-11 23:17:01

怎么样:

enum my_type {
    a, b, c, d,
    last
};

void f() {
    my_type test = static_cast<my_type>(rand() % last);
}

How about:

enum my_type {
    a, b, c, d,
    last
};

void f() {
    my_type test = static_cast<my_type>(rand() % last);
}
野鹿林 2024-09-11 23:17:01

没有隐式转换,但显式转换可以工作:

my_type test = my_type(rand() % 10);

There is no implicit conversion, but an explicit one will work:

my_type test = my_type(rand() % 10);
桃扇骨 2024-09-11 23:17:01

这是我最近解决类似问题的方法。我将其放入适当的 .cc 文件中:

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

在定义枚举的标头内:

enum Direction
{
    N,
    E,
    S,
    W
};
static std::vector<Direction> ALL_DIRECTIONS({Direction::N, Direction::E, Direction::S, Direction::W});

并生成随机方向:

Direction randDir() {
    std::uniform_int_distribution<size_t> dis(0, ALL_DIRECTIONS.size() - 1);
    Direction randomDirection = ALL_DIRECTIONS[dis(gen)];
    return randomDirection;
}

不要忘记

#include <random>

Here is how I solved a similar problem recently. I put this in an appropiate .cc file:

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

Inside the header that defines the enum:

enum Direction
{
    N,
    E,
    S,
    W
};
static std::vector<Direction> ALL_DIRECTIONS({Direction::N, Direction::E, Direction::S, Direction::W});

And to generate a random direction:

Direction randDir() {
    std::uniform_int_distribution<size_t> dis(0, ALL_DIRECTIONS.size() - 1);
    Direction randomDirection = ALL_DIRECTIONS[dis(gen)];
    return randomDirection;
}

Don't forget to

#include <random>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文