How often should I call srand() in a C++ application?(在 C++ 应用程序中,我应该多久调用一次 srand()?)
问题描述
我有一个 C++ 应用程序,它在不同的地方调用 rand().我是否需要定期初始化 srand()
以确保 rand() 是合理随机的,还是在应用程序启动时调用一次就足够了?
I have a C++ application which calls rand() in various places. Do I need to initialize srand()
regularly to ensure that rand() is reasonably random, or is it enough to call it once when the app starts?
推荐答案
如果您只有一个线程,请一次.如果您经常重新播种,实际上可能会破坏随机数的某些统计特性.如果您有多个线程,则根本不要使用 rand
,而是使用诸如 drand48_r
之类的线程安全的东西,它可以让您保持每个线程的状态(因此您可以播种一次每个线程).
If you have only a single thread, seed once. If you reseed often, you might actually break some of the statistical properties of the random numbers. If you have multiple threads, don't use rand
at all, but rather something threadsafe like drand48_r
, which lets you maintain a per-thread state (so you can seed once per thread).
这篇关于在 C++ 应用程序中,我应该多久调用一次 srand()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 应用程序中,我应该多久调用一次 srand()?
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01