1
我通常由種子接下來的時間我的RNG,通過調用獲得time.h
使用Boost
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
cout << static_cast<unsigned int>(time(0)) << endl;
return 0;
}
是否有一個相當於static_cast<unsigned int>(time(0))
於Boost庫經過在幾秒鐘的時間?
對於我的電腦,事實證明**提升**比**計時**相當快(約4.20倍)** –