C++中的junit_real_distribution类的a()方法用于获取此uniform_real_distribution的下限。
句法:
result_type a() const;
参数:此方法不接受任何参数。
返回值:该方法返回分布中的“ a”参数,该参数是此uniform_real_distribution中的下限或可能生成的最小值。
例子:
// C++ code to demonstrate
// the working of a() 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 a()
cout << "Lower Bound: "
<< distribution.a() << endl;
return 0;
}
输出:
Lower Bound: 10
参考: http://www.cplusplus.com/reference/random/uniform_real_distribution/a/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。