<random>

公共靜態成員函式 (public static member function)
<random>

std::independent_bits_engine::max

static constexpr result_type max();
最大值
返回成員 operator() 可能返回的最大值,對於 independent_bits_engine 而言,該值為 2w-1,其中 w 是第二個類模板引數(每個生成數字的有效位數)。

引數



返回值

2w-1
result_type是一種成員型別,定義為由 base 引擎生成的數字型別的別名。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// independent_bits_engine::min and max
#include <iostream>
#include <chrono>
#include <cstdint>
#include <random>

int main ()
{
  unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();

  std::independent_bits_engine<std::mt19937,64,std::uint_fast64_t> generator (seed);

  std::cout << generator() << " is a random number between ";
  std::cout << generator.min() << " and " << generator.max();

  return 0;
}

可能的輸出
4629903696969630447 is a random number between 0 and 18446744073709551615


複雜度

無 (編譯時常量)。

另見