Condividi tramite


variate_generator::operator()

Restituisce un valore casuale.

result_type operator()();
template<class T>
    result_type operator()(T value);

Parametri

  • T
    Il tipo di argomenti del motore.

  • The engine argument.
    valore

Note

La prima funzione membro restituisce dist(wr_eng), dove wr_eng dal motore eseguito il wrapping dell'oggetto.

La seconda funzione membro restituisce dist(wr_eng, value), dove wr_eng dal motore eseguito il wrapping dell'oggetto.

Esempio

 

// std_tr1__random__variate_generator_operator_fn.cpp 
// compile with: /EHsc 
#include <random> 
#include <iostream> 
 
typedef std::minstd_rand Myeng; 
typedef std::uniform_int<unsigned int> Mydist; 
typedef std::variate_generator<Myeng, Mydist> Myceng; 
int main() 
    { 
    Myeng eng0; 
    Mydist dist0; 
    Myceng ceng(eng0, dist0); 
    const Myceng::engine_type& eng = ceng.engine(); // get base engine 
    const Myceng::distribution_type& dist = 
        ceng.distribution(); // get distribution 
    Myceng::result_type compval = ceng(); 
 
    compval = compval;  // to quiet "unused" warnings 
    eng.min(); 
    dist.min(); 
 
    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); 
    } 
 
  

Requisiti

intestazione: <random>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

<random>

variate_generator Class