当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ std::uniform_real_distribution min()用法及代码示例


C++中uniform_real_distribution类的min()方法用于获取此uniform_real_distribution可以生成的最小可能值。

用法:

result_type min() const;

参数:此方法不接受任何参数。


返回值:此方法在此uniform_real_distribution中返回可能的最小生成值。

例:

// C++ code to demonstrate 
// the working of min() function 
  
#include <iostream> 
  
// for uniform_real_distribution function 
#include <random> 
  
using namespace std; 
  
int main() 
{ 
    double a = 10, b = 20.5; 
  
    // Initializing of uniform_real_distribution class 
    uniform_real_distribution<double> distribution(a, b); 
  
    // Using min() 
    cout << "Min value that can be generated"
         << " by this uniform_real_distribution:"
         << distribution.min() << endl; 
  
    return 0; 
}
输出:
Min value that can be generated by this uniform_real_distribution:10

参考: http://www.cplusplus.com/reference/random/uniform_real_distribution/min/



相关用法


注:本文由纯净天空筛选整理自srinam大神的英文原创作品 std::uniform_real_distribution min() method in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。