我正在使用 GCC 4.6.3 并尝试使用以下代码生成随机数:
#include <random>
#include <functional>
int main()
{
std::mt19937 rng_engine;
printf("With bind\n");
for(int i = 0; i < 5; ++i) {
std::uniform_real_distribution<double> dist(0.0, 1.0);
auto rng = std::bind(dist, rng_engine);
printf("%g\n", rng());
}
printf("Without bind\n");
for(int i = 0; i < 5; ++i) {
std::uniform_real_distribution<double> dist(0.0, 1.0);
printf("%g\n", dist(rng_engine));
}
return 0;
}
我希望这两种方法都能生成一个由 5 个随机数组成的序列。相反,这是我实际得到的:
With bind
0.135477
0.135477
0.135477
0.135477
0.135477
Without bind
0.135477
0.835009
0.968868
0.221034
0.308167
这是 GCC 错误吗?还是与 std::bind 有关的一些微妙问题?如果是这样,你能理解结果吗?
谢谢。