次の方法で共有


uniform_int_distribution::param_type

分布パラメーターを格納します。

struct param_type {
    typedef uniform_int_distribution<IntType> distribution_type;
    param_type(result_type a0 = 0,
        result_type b0 = std::numeric_limits<IntType>::max());
    result_type a() const;
    result_type b() const;
    bool operator==(const param_type& right) const;
    bool operator!=(const param_type& right) const;
    };

解説

このパラメーター パッケージを operator() に渡して、戻り値を生成できます。

必要条件

ヘッダー : <random>

名前空間: std

参照

関連項目

<random>

uniform_int_distribution クラス