c++ random
看起来random_device比较恶心,c++的random可能不是你看起来的那么light weight
c++的random_device的构造代码
1
2
3
4
5
6
7
8
9
random_device::random_device(const string& __token) {
if (__token != "/dev/urandom")
__throw_system_error(ENOENT, ("random device not supported " + __token).c_str());
}
random_device::random_device(const string& __token) : __f_(open(__token.c_str(), O_RDONLY)) {
if (__f_ < 0)
__throw_system_error(errno, ("random_device failed to open " + __token).c_str());
}
贼尬,random_device的构造函数里面打开了一个设备文件,可以用来获取随机数,但是这个文件的读取是阻塞的,如果没有足够的熵,那么读取的时候就会阻塞,这个时候就会有问题了。根据我的经验,可能直接crash了,嘻嘻。所以最好写一个单例。
REF
This post is licensed under CC BY 4.0 by the author.