公共靜態成員函式
<random>

std::subtract_with_carry_engine::max

static constexpr result_type max();
最大值
返回成員operator()可能返回的最大值,對於subtract_with_carry_engine來說,該值是2w-1(其中w是作為第二個類模板引數指定的字大小)。

引數



返回值

2word_size-1
result_type是一個成員型別,定義為第一個類模板引數的別名 (UIntType).

示例

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

int main ()
{
  unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
  std::subtract_with_carry_engine<unsigned,24,10,24> generator (seed);

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

  return 0;
}

可能的輸出
396993 is a random number between 0 and 16777215


複雜度

無 (編譯時常量)。

另見