命名空间
变体
操作

std::uniform_int_distribution

来自 cppreference.com
< cpp‎ | numeric‎ | random
 
 
 
 
 
定义在头文件 <random>
template< class IntType = int >
class uniform_int_distribution;
(自 C++11 起)

生成随机整数值 i,均匀分布在闭区间 [a, b] 上,即根据离散概率函数分布

P(i|a,b) =
1
b − a + 1
.

std::uniform_int_distribution 满足 RandomNumberDistribution 的所有要求。

内容

[编辑] 模板参数

IntType - 生成器生成的結果類型。如果這不是 shortintlonglong longunsigned shortunsigned intunsigned longunsigned long long 之一,则效果未定义。

[编辑] 成员类型

成员类型 定义
result_type (C++11) IntType
param_type (C++11) 参数集的类型,请参见 RandomNumberDistribution

[编辑] 成员函数

构造新的分布
(公有成员函数) [编辑]
(C++11)
重置分布的内部状态
(公有成员函数) [编辑]
生成
生成分布中的下一个随机数
(公有成员函数) [编辑]
特征
(C++11)
返回分布参数
(公有成员函数) [编辑]
(C++11)
获取或设置分布参数对象
(公有成员函数) [编辑]
(C++11)
返回可能生成的最小值
(公有成员函数) [编辑]
(C++11)
返回可能生成的 最大值
(公有成员函数) [编辑]

[编辑] 非成员函数

(C++11)(C++11)(在 C++20 中移除)
比较两个分布对象
(函数) [编辑]
在伪随机数分布上执行流输入和输出
(函数模板) [编辑]

[编辑] 示例

此程序模拟掷 6 面 骰子

#include <iostream>
#include <random>
 
int main()
{
    std::random_device rd;  // a seed source for the random number engine
    std::mt19937 gen(rd()); // mersenne_twister_engine seeded with rd()
    std::uniform_int_distribution<> distrib(1, 6);
 
    // Use distrib to transform the random unsigned int
    // generated by gen into an int in [1, 6]
    for (int n = 0; n != 10; ++n)
        std::cout << distrib(gen) << ' ';
    std::cout << '\n';
}

可能的输出

1 1 6 5 2 2 5 5 6 2