result_type max() const;
概要
生成し得る値の上限を取得する。
戻り値
構築時に設定された、値の範囲の上限を返す。
例
#include <iostream>
#include <random>
int main()
{
std::uniform_real_distribution<> dist(0.0, 1.0);
double max_value = dist.max();
std::cout << max_value << std::endl;
}
出力
1
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.2 ✅
- ICC: ??
- Visual C++: ??