次の方法で共有


random_device クラス

外部デバイスからランダム シーケンスを生成します。

class random_device {
public:
    typedef unsigned int result_type;
    explicit random_device(const std::string& token = /* implementation defined */);
    result_type min() const;
    result_type max() const;
    double entropy() const;
    result_type operator()();
private:
    random_device(const random_device&) = delete;
    void operator=(const random_device&) = delete;
    };

解説

このクラスは乱数のソースを表します。可能な限り、非確定的な外部デバイスが使用されます。この実装では、既定で生成される値は非確定的ではありません。これらは閉じた範囲 [0, 65535] で一様に分布します。

必要条件

ヘッダー : <random>

名前空間: std

参照

関連項目

<random>

random_device::entropy

random_device::operator()

random_device::random_device