std::uniform_int_distribution<IntType>::a, b
来自 cppreference.com
< cpp | numeric | random | uniform int distribution
result_type a() const; |
(1) | (自 C++11) |
result_type b() const; |
(2) | (自 C++11) |
返回分配构造时的参数。
1) 返回 a 分配参数。它定义了可能生成的最小值。默认值为 0.
2) 返回 b 分配参数。它定义了可能生成的 最大值。默认值为 std::numeric_limits<IntType>::max().
[编辑] 参数
(无)
[编辑] 返回值
1) a 分配参数。
2) b 分配参数。
[编辑] 另请参阅
(C++11) |
获取或设置分配参数对象 (公共成员函数) |