C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 常用数学函数
- 数学特殊函数
- 伪随机数生成
- std::uniform_random_bit_generator
- std::linear_congruential_engine
- std::mersenne_twister_engine
- std::srand
- std::rand
- std::subtract_with_carry_engine
- std::discard_block_engine
- std::independent_bits_engine
- std::shuffle_order_engine
- std::random_device
- std::uniform_int_distribution
- std::uniform_real_distribution
- std::generate_canonical
- std::bernoulli_distribution
- std::binomial_distribution
- std::negative_binomial_distribution
- std::geometric_distribution
- std::poisson_distribution
- std::exponential_distribution
- std::gamma_distribution
- std::weibull_distribution
- std::extreme_value_distribution
- std::normal_distribution
- std::lognormal_distribution
- std::chi_squared_distribution
- std::cauchy_distribution
- std::fisher_f_distribution
- std::student_t_distribution
- std::discrete_distribution
- std::piecewise_constant_distribution
- std::piecewise_linear_distribution
- std::seed_seq
- RAND_MAX
- std::midpoint
- std::lerp
- std::has_single_bit
- std::bit_ceil
- std::bit_floor
- std::bit_width
- std::rotl
- 浮点环境
- std::complex
- std::valarray
- 编译时有理数算术
- std::gcd
- std::lcm
- 数学常数
- std::bit_cast
- std::rotr
- std::countl_zero
- std::countl_one
- std::countr_zero
- std::countr_one
- std::popcount
- 注释
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::uniform_real_distribution
定义于头文件 <random>
|
||
template< class RealType = double > class uniform_real_distribution; |
(C++11 起) | |
产生均匀分布在区间 [a, b)
上的随机浮点值 i ,分布按照概率密度函数:
- P(i|a,b) =
.1 b − a
std::uniform_real_distribution
满足随机数分布 (RandomNumberDistribution) 的所有要求。
模板形参
RealType | - | 生成器所生成的结果类型。若它不是 float 、 double 或 long double 之一则效果未定义。
|
成员类型
成员类型 | 定义 |
result_type
|
RealType |
param_type
|
参数集的类型,见随机数分布 (RandomNumberDistribution) 。 |
成员函数
构造新分布 (公开成员函数) | |
重置分布的内部状态 (公开成员函数) | |
生成 | |
生成分布中的下个随机数 (公开成员函数) | |
特征 | |
返回分布参数 (公开成员函数) | |
获取或设置随机参数对象 (公开成员函数) | |
返回最小的潜在生成值 (公开成员函数) | |
返回最大的潜在生成值 (公开成员函数) |
非成员函数
比较两个分布对象 (函数) | |
执行伪随机数分布的流输入和输出 (函数模板) |
注意
为创建闭区间 [a,b] 上的分布,可以 std::nextafter(b, std::numeric_limits<RealType>::max()) 为第二参数。
某些既存实现拥有漏洞,若 RealType
为 float 则它们有时返回 b GCC #63176 LLVM #18767 。此为 LWG 问题 2524 所导致。
示例
打印 10 个 1 与 2 间的随机数
运行此代码
#include <random> #include <iostream> int main() { std::random_device rd; // 将用于获得随机数引擎的种子 std::mt19937 gen(rd()); // 以 rd() 播种的标准 mersenne_twister_engine std::uniform_real_distribution<> dis(1, 2); for (int n = 0; n < 10; ++n) { // 用 dis 变换 gen 生成的随机 unsigned int 为 [1, 2) 中的 double std::cout << dis(gen) << ' '; // 每次调用 dis(gen) 都生成新的随机 double } std::cout << '\n'; }
可能的输出:
1.80829 1.15391 1.18483 1.38969 1.36094 1.0648 1.97798 1.27984 1.68261 1.57326