Partager via


bernoulli_distribution::p

Retourne le paramètre de distribution de p.

double p();

Notes

La fonction membre retourne la valeur signalée stored_p.

Exemple

 

// std_tr1__random__bernoulli_distribution_p.cpp 
// compile with: /EHsc 
#include <random> 
#include <iostream> 
 
typedef std::mt19937 Myeng; 
typedef std::bernoulli_distribution Mydist; 
int main() 
    { 
    Myeng eng; 
    Mydist dist(0.6); 
    Mydist::input_type engval = eng(); 
    Mydist::result_type distval = dist(eng); 
 
    distval = distval;  // to quiet "unused" warnings 
    engval = engval; 
 
    std::cout << "p == " << dist.p() << std::endl; 
 
    dist.reset(); // discard any cached values 
    std::cout << "a random value == " << std::boolalpha 
        << dist(eng) << std::endl; 
    std::cout << "a random value == " << std::boolalpha 
        << dist(eng) << std::endl; 
    std::cout << "a random value == " << std::boolalpha 
        << dist(eng) << std::endl; 
 
    return (0); 
    } 
 
  

Configuration requise

en-tête : <random>

l'espace de noms : DST

Voir aussi

Référence

<random>

bernoulli_distribution Class