次の方法で共有


uniform_int クラス

整数の一様分布を生成します。TR1 との互換性のために保持されています。代わりに uniform_int_distribution クラス を使用してください。

template<class IntType = int>
    class uniform_int {
public:
    typedef IntType input_type;
    typedef IntType result_type;
    explicit uniform_int(result_type min0 = 0, result_type max0 = 9);
    result_type min() const;
    result_type max() const;
    void reset();
    template<class Engine>
        result_type operator()(Engine& eng);
    template<class Engine>
        result_type operator()(Engine& eng, result_type n);
private:
    result_type stored_min;    // exposition only
    result_type stored_max;    // exposition only
    };

パラメーター

  • IntType
    結果を表す整数型。

解説

このテンプレート クラスは、一様分布を使用してユーザー指定の整数型の値を生成する分布を表します。

必要条件

ヘッダー : <random>

名前空間: std

参照

関連項目

<random>

uniform_int::operator()

uniform_int::uniform_int