📌  相关文章
📜  具有示例的C++中的std :: uniform_real_distribution b()方法

📅  最后修改于: 2021-05-30 09:21:47             🧑  作者: Mango

C++中的junit_real_distribution类b()方法用于获取此uniform_real_distribution的上限。

句法:

result_type b() const;

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

返回值:该方法返回分布中的“ b”参数,该参数是此uniform_real_distribution中的上限或最大可能生成的值。

例子:

// C++ code to demonstrate
// the working of b() function
  
#include 
  
// for uniform_real_distribution function
#include 
  
using namespace std;
  
int main()
{
    double a = 10, b = 20.5;
  
    // Initializing of uniform_real_distribution class
    uniform_real_distribution distribution(a, b);
  
    // Using b()
    cout << "Upper Bound: "
         << distribution.b() << endl;
  
    return 0;
}
输出:
Upper Bound: 20.5

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

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”