El método max() de la clase uniform_real_distribution en C++ se usa para obtener el máximo valor posible que puede generar esta uniform_real_distribution.
Sintaxis:
result_type max() const;
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el valor máximo posiblemente generado en esta distribución_real_uniforme.
Ejemplo:
// C++ code to demonstrate // the working of max() 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 max() cout << "Max value that can be generated" << " by this uniform_real_distribution: " << distribution.max() << endl; return 0; }
Producción:
Max value that can be generated by this uniform_real_distribution: 20.5
Referencia: http://www.cplusplus.com/reference/random/uniform_real_distribution/max/