假设我有这个跨平台的程序
#include <random>
#include <iostream>
int main()
{
std::random_device rd;
std::cout << "rd.entropy = " << rd.entropy() << std::endl;
std::uniform_int_distribution<int> dist(0, 9);
for (int i = 0; i < 10; ++i) {
std::cout << dist(rd) << " ";
}
std::cout << std::endl;
}
在带有g++ (Ubuntu 4.8.2-19ubuntu1) 4.8.2
的Linux Mint 17.1上,它总是产生随机数:
$ g++ -std=c++11 testrd.cpp -o testrd
$ ./testrd
rd.entropy = 0
9 2 6 0 8 1 0 2 3 8
$ ./testrd
rd.entropy = 0
3 6 2 4 1 1 8 3 7 5
$ ./testrd
rd.entropy = 0
3 4 4 6 8 5 4 6 6 3
$ ./testrd
rd.entropy = 0
2 4 7 7 6 3 0 1 1 9
$ ./testrd
rd.entropy = 0
7 2 5 0 7 8 6 6 0 6
但我怎么能确定,在任何系统上std::random_device
都是随机的?例如,在mingw-gcc
的Windows上,不随机(例如,请参阅this question),它将在启动时生成相同的序列。但是从MSVC ++(根据S. Lavavej)开始,从2013年开始,它 随机。
我以为我可以这样做:
if (rd.entropy() != 0) {
// initialize some generator like mt19937 with rd()
}
else {
// use another seed generator (for example, time in milliseconds)
}
即。将rd.entropy()与0进行比较但结果证明是错误的。
如何测试std::random_device
的随机性?
答案 0 :(得分:4)
std::random_device::entropy
上的cppreference页面(强调我的)
此功能在某些标准库中未完全实现。例如,即使设备是非确定性的,gcc和clang 也始终返回零。相比之下,Visual C ++总是返回32,而boost.random返回10.