公有成员函数
<random>

std::bernoulli_distribution::(构造函数)

(1)
explicit bernoulli_distribution (double p = 0.5);
(2)
explicit bernoulli_distribution (const param_type& parm);
构造伯努利分布
构造一个伯努利分布对象,其概率为p(或使用对象parm指定的概率)。

参数

p
返回的概率true.
这应该是一个介于0.01.0(两者都包含)的值。
parm
一个表示分布参数的对象,通过调用成员函数param获得。
param_type是一个成员类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// bernoulli_distribution example: fortune-teller
#include <iostream>
#include <string>
#include <random>

int main()
{
  std::cout << "Please, enter a yes/no question (I will answer it):" << std::endl;
  std::string text;
  getline(std::cin,text);

  std::seed_seq seed (text.begin(),text.end());  // seed using question
  std::default_random_engine generator (seed);
  std::bernoulli_distribution distribution(0.5);

  bool result = distribution(generator);
  std::cout << ( result ? "yes" : "no" ) << std::endl;

  return 0;
}

可能的输出
Please, enter a yes/no question (I will answer it):
Should I buy a new laptop?
no


复杂度

常量。

另见