Home > Database > Mysql Tutorial > 编程技巧 多线程下的随机数初始化

编程技巧 多线程下的随机数初始化

WBOY
Release: 2016-06-07 15:29:45
Original
1131 people have browsed it

欢迎进入C/C++编程社区论坛,与200万技术人员互动交流 >>进入 今天在调试程序时候发现某个线程中的 rand() 随机函数每次运行都返回同一个数据,检查了程序,在程序中也调用了 srand(GetTicketCount()) 来初始化随机数生成器,那为什么每次运行结果还一样呢?

欢迎进入C/C++编程社区论坛,与200万技术人员互动交流 >>进入

  今天在调试程序时候发现某个线程中的 rand() 随机函数每次运行都返回同一个数据,检查了程序,在程序中也调用了 srand(GetTicketCount()) 来初始化随机数生成器,那为什么每次运行结果还一样呢???  

  后来发现,这个问题和多线程有关,跟踪 srand 和 rand 的函数内部后发现,其实 srand 和 rand 内部是使用了TlsGetValue等函数来存储随机数种子了,也就是说,这个随机数种子对每个线程都需要初始化一次 srand,而以前的代码是在主线程中初始化了一次,当然每次的结果都一样了。
  void __cdecl srand (

   unsigned int seed

   )
  {

  #ifdef _MT 

   _getptd()->_holdrand = (unsigned long)seed;  

  #else /* _MT */

  holdrand = (long)seed;

  #endif /* _MT */

  }  

  _ptiddata __cdecl _getptd (

   void

   )
  {   _ptiddata ptd;

   DWord TL_LastError;  

   TL_LastError = GetLastError();

   if ( (ptd = TlsGetValue(__tlsindex)) == NULL ) {

   /*

 

[1] [2] 

编程技巧 多线程下的随机数初始化

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template