Partilhar via


random_device::operator()

Retorna um valor aleatório.

result_type operator()();

Comentários

A função de membro retorna os valores distribuídos uniformemente no intervalo [min(), max()]fechado.

Exemplo

 

// std_tr1__random__random_device_operator_fn.cpp 
// compile with: /EHsc 
#include <random> 
#include <iostream> 
 
typedef std::random_device Myceng; 
int main() 
    { 
    Myceng ceng; 
    Myceng::result_type compval = ceng(); 
 
    compval = compval;  // to quiet "unused" warnings 
 
    std::cout << "entropy == " << ceng.entropy() << std::endl; 
    std::cout << "min == " << ceng.min() << std::endl; 
    std::cout << "max == " << ceng.max() << std::endl; 
 
    std::cout << "a random value == " << ceng() << std::endl; 
    std::cout << "a random value == " << ceng() << std::endl; 
    std::cout << "a random value == " << ceng() << std::endl; 
 
    return (0); 
    } 
 
  

Requisitos

Cabeçalho: <random>

namespace: STD

Consulte também

Referência

<random>

random_device Class