static constexpr result_type max();
概要
生成する値の最大値を取得する。
戻り値
numeric_limits<result_type>::max()
計算量
定数時間
例
#include <iostream>
#include <random>
int main()
{
unsigned int max_value = std::random_device::max();
std::cout << max_value << std::endl;
}
xxxxxxxxxx
#include <iostream>
#include <random>
int main()
{
unsigned int max_value = std::random_device::max();
std::cout << max_value << std::endl;
}
出力例
4294967295
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.2 ✅
- ICC: ??
- Visual C++: 2010 ✅, 2012 ✅, 2013 ✅, 2015 ✅, 2017 ✅